Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump release #82

Merged
merged 3 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading