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
11 changes: 11 additions & 0 deletions 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.1.1](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.0...parsely-rs-v0.1.1) - 2025-04-25

### Other

- Better expression ergonomics ([#5](https://github.com/bbaldino/parsely/pull/5))
- clean up field reader code gen
- add StateSync impl for String
- remove the 'after' attribute
- remove the buffer_type attribute
- release v0.1.0

## [0.1.0](https://github.com/bbaldino/parsely/releases/tag/parsely-rs-v0.1.0) - 2025-04-23

### Added
Expand Down
6 changes: 3 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.0"
version = "0.1.1"
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.0", path = "macro" }
parsely-impl = { version = "=0.1.0", path = "impl" }
parsely-macro = { version = "=0.1.1", path = "macro" }
parsely-impl = { version = "=0.2.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.2.0](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.1.0...parsely-impl-v0.2.0) - 2025-04-25

### Other

- Better expression ergonomics ([#5](https://github.com/bbaldino/parsely/pull/5))
- clean up field reader code gen
- add StateSync impl for String
- remove the 'after' attribute
- remove the buffer_type attribute
- release v0.1.0

## [0.1.0](https://github.com/bbaldino/parsely/releases/tag/parsely-impl-v0.1.0) - 2025-04-23

### Added
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.1.0"
version = "0.2.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.1](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.0...parsely-macro-v0.1.1) - 2025-04-25

### Other

- release v0.1.0

## [0.1.0](https://github.com/bbaldino/parsely/releases/tag/parsely-macro-v0.1.0) - 2025-04-23

### 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.0"
version = "0.1.1"
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.1.0", path = "../impl" }
parsely-impl = { version = "=0.2.0", path = "../impl" }
proc-macro2 = "1"
quote = "1"
syn = { version = "2.0.98", features = ["full", "extra-traits"] }