Skip to content

Commit 860090c

Browse files
chore: release (#13)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 2ca7a86 commit 860090c

File tree

7 files changed

+43
-9
lines changed

7 files changed

+43
-9
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.6](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.5...parsely-rs-v0.1.6) - 2025-06-04
11+
12+
### Added
13+
14+
- refactor/support tuple structs and enums ([#14](https://github.com/bbaldino/parsely/pull/14))
15+
16+
### Other
17+
18+
- more readme improvements
19+
- fix readme issues
20+
- update readme
21+
- fix some readme lints
22+
- run examples in README as doctests, fix some issues
23+
- update example/remove unused code ([#12](https://github.com/bbaldino/parsely/pull/12))
24+
1025
## [0.1.5](https://github.com/bbaldino/parsely/compare/parsely-rs-v0.1.4...parsely-rs-v0.1.5) - 2025-05-05
1126

1227
### Added

Cargo.lock

Lines changed: 5 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.5"
3+
version = "0.1.6"
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.4", path = "macro" }
12-
parsely-impl = { version = "=0.4.1", path = "impl" }
11+
parsely-macro = { version = "=0.1.5", path = "macro" }
12+
parsely-impl = { version = "=0.5.0", path = "impl" }
1313

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

impl/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.5.0](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.4.1...parsely-impl-v0.5.0) - 2025-06-04
11+
12+
### Added
13+
14+
- refactor/support tuple structs and enums ([#14](https://github.com/bbaldino/parsely/pull/14))
15+
16+
### Other
17+
18+
- run examples in README as doctests, fix some issues
19+
- update example/remove unused code ([#12](https://github.com/bbaldino/parsely/pull/12))
20+
1021
## [0.4.1](https://github.com/bbaldino/parsely/compare/parsely-impl-v0.4.0...parsely-impl-v0.4.1) - 2025-05-02
1122

1223
### Fixed

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.1"
3+
version = "0.5.0"
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.5](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.4...parsely-macro-v0.1.5) - 2025-06-04
11+
12+
### Other
13+
14+
- updated the following local packages: parsely-impl
15+
1016
## [0.1.4](https://github.com/bbaldino/parsely/compare/parsely-macro-v0.1.3...parsely-macro-v0.1.4) - 2025-05-02
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.4"
3+
version = "0.1.5"
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.1", path = "../impl" }
14+
parsely-impl = { version = "=0.5.0", path = "../impl" }
1515
proc-macro2 = "1"
1616
quote = "1"
1717
syn = { version = "2.0.98", features = ["full", "extra-traits"] }

0 commit comments

Comments
 (0)