From e5d1499f60ac3b4c1532cbec800f31d65521440a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Jun 2025 04:44:01 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 8 +++++--- Cargo.toml | 6 +++--- impl/CHANGELOG.md | 11 +++++++++++ impl/Cargo.toml | 2 +- macro/CHANGELOG.md | 6 ++++++ macro/Cargo.toml | 4 ++-- 7 files changed, 43 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e56382..63eca30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 609905b..e5c49ba 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,6 +11,8 @@ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" [[package]] name = "bits-io" version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d4228f764442a055482d34ff0821a0d11d10d5f6972752f3208d99765b0dfbb" dependencies = [ "bitvec", "bytes", @@ -169,7 +171,7 @@ dependencies = [ [[package]] name = "parsely-impl" -version = "0.4.1" +version = "0.5.0" dependencies = [ "anyhow", "bits-io", @@ -183,7 +185,7 @@ dependencies = [ [[package]] name = "parsely-macro" -version = "0.1.4" +version = "0.1.5" dependencies = [ "parsely-impl", "proc-macro2", @@ -193,7 +195,7 @@ dependencies = [ [[package]] name = "parsely-rs" -version = "0.1.5" +version = "0.1.6" dependencies = [ "bitvec", "macrotest", diff --git a/Cargo.toml b/Cargo.toml index 5c5f06e..9cacfa1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parsely-rs" -version = "0.1.5" +version = "0.1.6" 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.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" diff --git a/impl/CHANGELOG.md b/impl/CHANGELOG.md index bc8d4fc..3c51c9f 100644 --- a/impl/CHANGELOG.md +++ b/impl/CHANGELOG.md @@ -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 diff --git a/impl/Cargo.toml b/impl/Cargo.toml index 62e76bb..02d2632 100644 --- a/impl/Cargo.toml +++ b/impl/Cargo.toml @@ -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" diff --git a/macro/CHANGELOG.md b/macro/CHANGELOG.md index b2f262b..9caeaec 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.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 diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 58ae017..421ffa2 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -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" @@ -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"] }