Skip to content

Commit

Permalink
Bump release (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaeIsBad authored Jan 8, 2025
1 parent 4d88cef commit 9072d2f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .versions.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
files:
- path: positional/Cargo.toml
pattern: '^version = \"{version}\"'
- path: positional/Cargo.toml
pattern: 'positional_derive = {{version = \"={version}\", path = \"../positional_derive\"}}'
- path: positional_derive/Cargo.toml
pattern: '^version = \"{version}\"'
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ and this project adheres to

---

## [0.4.4] - 2025-01-06

# Changed

- remove ![doc(hidden)] from `ToPositionalField`

# Updated

- Updated `thiserror` to 2.0
- Updated `itertools` to 0.14

---

## [0.4.3] - 2024-10-02

- replace the proc-macro-error dependency with proc-macro-error2
Expand Down Expand Up @@ -64,6 +77,8 @@ and this project adheres to
[0.1.3]: https://github.com/primait/positional.rs/compare/0.1.2...0.1.3
[0.1.2]: https://github.com/primait/positional.rs/compare/0.1.1...0.1.2

[Unreleased]: https://github.com/primait/positional.rs/compare/0.4.3...HEAD

[Unreleased]: https://github.com/primait/positional.rs/compare/0.4.4...HEAD
[0.4.4]: https://github.com/primait/positional.rs/compare/0.4.3...0.4.4
[0.4.3]: https://github.com/primait/positional.rs/compare/0.4.2...0.4.3
[0.4.2]: https://github.com/primait/positional.rs/releases/tag/0.4.2
4 changes: 2 additions & 2 deletions positional/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = "MIT"
name = "positional"
readme = "../README.md"
repository = "https://github.com/primait/positional.rs"
version = "0.4.3"
version = "0.4.4"

[[bench]]
harness = false
Expand All @@ -22,7 +22,7 @@ name = "enum"
[dependencies]
itertools = "0.14.0"
pad = "0.1.6"
positional_derive = {version = "=0.4.3", path = "../positional_derive"}
positional_derive = {version = "=0.4.4", path = "../positional_derive"}
proc-macro2 = "1.0.39"
quote = "1.0"
thiserror = "2.0.9"
Expand Down
1 change: 0 additions & 1 deletion positional/src/field.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use pad::{Alignment, PadStr};
use std::fmt::Display;

#[doc(hidden)]
/// a trait to represent a type that could be converted to a positional field
///
/// There is a generic implementation for types that implements Display
Expand Down
2 changes: 1 addition & 1 deletion positional_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description = "Macros for positional crate"
edition = "2021"
license = "MIT"
name = "positional_derive"
version = "0.4.3"
version = "0.4.4"
documentation = "https://docs.rs/positional"

[lib]
Expand Down

0 comments on commit 9072d2f

Please sign in to comment.