Skip to content

Commit

Permalink
Release 0.2.0 (#12)
Browse files Browse the repository at this point in the history
Co-authored-by: Pavel Procopiuc <[email protected]>
  • Loading branch information
pavel-procopiuc and Pavel Procopiuc authored Nov 15, 2022
1 parent d3d6c4b commit b2d0731
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### [Next]

### [0.2.0]
- `from_positional_row` now accepts `&str` instead of `impl ToString` and eliminates all internal allocations during parsing

### [0.1.3]
- `parse` function from the FromPositionalRow trait has been renamed to `from_positional_row` for coherence with the counterpart

### [0.1.2]
- FromPositionalRow and ToPositionalRow macros are now applicable also to enums


[Next]: https://github.com/primait/positional.rs/compare/0.1.3...HEAD
[Next]: https://github.com/primait/positional.rs/compare/0.2.0...HEAD
[0.2.0]: https://github.com/primait/positional.rs/compare/0.1.3...0.2.0
[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
4 changes: 2 additions & 2 deletions positional/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "positional"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
description = "A library to author/parse positional files"
license = "MIT"
Expand All @@ -20,7 +20,7 @@ name = "enum"
harness = false

[dependencies]
positional_derive = { version = "=0.1.3", path = "../positional_derive" }
positional_derive = { version = "=0.2.0", path = "../positional_derive" }
quote = "1.0"
proc-macro2 = "1.0.39"
thiserror = "1.0.31"
Expand Down
2 changes: 1 addition & 1 deletion positional_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "positional_derive"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
description = "macros for positional crate"
license = "MIT"
Expand Down

0 comments on commit b2d0731

Please sign in to comment.