diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f3503a..9647c64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.2...parsely-rs-v0.1.3) - 2025-05-01 + +### Added + +- trait rework ([#9](https://github.com/bbaldino/parsely/pull/9)) +- upgrade bits-io, re-export BitSliceUxExts + +### Other + +- rename test file/add a test for 'while' + ## [0.1.2](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.1...parsely-rs-v0.1.2) - 2025-04-25 ### Other diff --git a/Cargo.lock b/Cargo.lock index 0384d5e..243fac6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -173,7 +173,7 @@ dependencies = [ [[package]] name = "parsely-impl" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "bits-io", @@ -187,7 +187,7 @@ dependencies = [ [[package]] name = "parsely-macro" -version = "0.1.2" +version = "0.1.3" dependencies = [ "parsely-impl", "proc-macro2", @@ -197,7 +197,7 @@ dependencies = [ [[package]] name = "parsely-rs" -version = "0.1.2" +version = "0.1.3" dependencies = [ "bitvec", "macrotest", diff --git a/Cargo.toml b/Cargo.toml index 49affb2..c8976ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parsely-rs" -version = "0.1.2" +version = "0.1.3" edition = "2024" license = "MIT" description = "Macro-based struct serialization/deserialization" @@ -8,8 +8,8 @@ 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.2", path = "macro" } -parsely-impl = { version = "=0.3.0", path = "impl" } +parsely-macro = { version = "=0.1.3", path = "macro" } +parsely-impl = { version = "=0.4.0", path = "impl" } [dev-dependencies] trybuild = "1" diff --git a/impl/CHANGELOG.md b/impl/CHANGELOG.md index c2cf391..eeca4fc 100644 --- a/impl/CHANGELOG.md +++ b/impl/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.0](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.3.0...parsely-impl-v0.4.0) - 2025-05-01 + +### Added + +- trait rework ([#9](https://github.com/bbaldino/parsely/pull/9)) +- upgrade bits-io, re-export BitSliceUxExts + ## [0.3.0](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.2.0...parsely-impl-v0.3.0) - 2025-04-25 ### Other diff --git a/impl/Cargo.toml b/impl/Cargo.toml index e024d42..792b497 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parsely-impl" -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "MIT" description = "Macro-based struct serialization/deserialization" diff --git a/macro/CHANGELOG.md b/macro/CHANGELOG.md index 07184d3..c7ba7d4 100644 --- a/macro/CHANGELOG.md +++ b/macro/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.2...parsely-macro-v0.1.3) - 2025-05-01 + +### Other + +- updated the following local packages: parsely-impl + ## [0.1.2](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.1...parsely-macro-v0.1.2) - 2025-04-25 ### Other diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 7af3051..2300d2f 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parsely-macro" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "MIT" description = "Macro-based struct serialization/deserialization" @@ -11,7 +11,7 @@ description = "Macro-based struct serialization/deserialization" proc-macro = true [dependencies] -parsely-impl = { version = "=0.3.0", path = "../impl" } +parsely-impl = { version = "=0.4.0", path = "../impl" } proc-macro2 = "1" quote = "1" syn = { version = "2.0.98", features = ["full", "extra-traits"] }