Skip to content

Commit bbeda96

Browse files
chore: release (#10)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent e14a6a6 commit bbeda96

File tree

7 files changed

+35
-9
lines changed

7 files changed

+35
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.3...parsely-rs-v0.1.4) - 2025-05-02
11+
12+
### Fixed
13+
14+
- optimize collection reads when we know the number of elements
15+
16+
### Other
17+
18+
- update bits-io version
19+
1020
## [0.1.3](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.2...parsely-rs-v0.1.3) - 2025-05-01
1121

1222
### Added

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "parsely-rs"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
license = "MIT"
66
description = "Macro-based struct serialization/deserialization"
77

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

1010
[dependencies]
11-
parsely-macro = { version = "=0.1.3", path = "macro" }
12-
parsely-impl = { version = "=0.4.0", path = "impl" }
11+
parsely-macro = { version = "=0.1.4", path = "macro" }
12+
parsely-impl = { version = "=0.4.1", path = "impl" }
1313

1414
[dev-dependencies]
1515
trybuild = "1"

impl/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.1](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.4.0...parsely-impl-v0.4.1) - 2025-05-02
11+
12+
### Fixed
13+
14+
- optimize collection reads when we know the number of elements
15+
16+
### Other
17+
18+
- update bits-io version
19+
1020
## [0.4.0](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.3.0...parsely-impl-v0.4.0) - 2025-05-01
1121

1222
### Added

impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parsely-impl"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2021"
55
license = "MIT"
66
description = "Macro-based struct serialization/deserialization"

macro/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.3...parsely-macro-v0.1.4) - 2025-05-02
11+
12+
### Other
13+
14+
- updated the following local packages: parsely-impl
15+
1016
## [0.1.3](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.2...parsely-macro-v0.1.3) - 2025-05-01
1117

1218
### Other

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parsely-macro"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
license = "MIT"
66
description = "Macro-based struct serialization/deserialization"
@@ -11,7 +11,7 @@ description = "Macro-based struct serialization/deserialization"
1111
proc-macro = true
1212

1313
[dependencies]
14-
parsely-impl = { version = "=0.4.0", path = "../impl" }
14+
parsely-impl = { version = "=0.4.1", path = "../impl" }
1515
proc-macro2 = "1"
1616
quote = "1"
1717
syn = { version = "2.0.98", features = ["full", "extra-traits"] }

0 commit comments

Comments
 (0)