Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.6](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.5...parsely-rs-v0.1.6) - 2025-06-04

### Added

- refactor/support tuple structs and enums ([#14](https://github.com/bbaldino/parsely/pull/14))

### Other

- more readme improvements
- fix readme issues
- update readme
- fix some readme lints
- run examples in README as doctests, fix some issues
- update example/remove unused code ([#12](https://github.com/bbaldino/parsely/pull/12))

## [0.1.5](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.4...parsely-rs-v0.1.5) - 2025-05-05

### Added
Expand Down
8 changes: 5 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "parsely-rs"
version = "0.1.5"
version = "0.1.6"
edition = "2024"
license = "MIT"
description = "Macro-based struct serialization/deserialization"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
parsely-macro = { version = "=0.1.4", path = "macro" }
parsely-impl = { version = "=0.4.1", path = "impl" }
parsely-macro = { version = "=0.1.5", path = "macro" }
parsely-impl = { version = "=0.5.0", path = "impl" }

[dev-dependencies]
trybuild = "1"
Expand Down
11 changes: 11 additions & 0 deletions impl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.4.1...parsely-impl-v0.5.0) - 2025-06-04

### Added

- refactor/support tuple structs and enums ([#14](https://github.com/bbaldino/parsely/pull/14))

### Other

- run examples in README as doctests, fix some issues
- update example/remove unused code ([#12](https://github.com/bbaldino/parsely/pull/12))

## [0.4.1](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.4.0...parsely-impl-v0.4.1) - 2025-05-02

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parsely-impl"
version = "0.4.1"
version = "0.5.0"
edition = "2021"
license = "MIT"
description = "Macro-based struct serialization/deserialization"
Expand Down
6 changes: 6 additions & 0 deletions macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.5](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.4...parsely-macro-v0.1.5) - 2025-06-04

### Other

- updated the following local packages: parsely-impl

## [0.1.4](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.3...parsely-macro-v0.1.4) - 2025-05-02

### Other
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parsely-macro"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
description = "Macro-based struct serialization/deserialization"
Expand All @@ -11,7 +11,7 @@ description = "Macro-based struct serialization/deserialization"
proc-macro = true

[dependencies]
parsely-impl = { version = "=0.4.1", path = "../impl" }
parsely-impl = { version = "=0.5.0", path = "../impl" }
proc-macro2 = "1"
quote = "1"
syn = { version = "2.0.98", features = ["full", "extra-traits"] }