Skip to content

Commit

Permalink
Version 0.10.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
frozenlib committed Aug 4, 2024
1 parent 384022a commit de8546b
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 15 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@

### Changed

### Deprecated

### Removed

### Fixed

### Performance

### Security

## [0.10.0] - 2024-08-04

### Added

### Changed

- Set `rust-version` to 1.80.0.
- In debug mode, it will panic if the result of `FromStrFormat::regex` varies for the same field depending on the type parameters.
- Change the behavior when both `#[display("...")]` and `#[from_str("...")]` are specified for a field. ([dc14a2b])
Expand Down Expand Up @@ -95,7 +111,8 @@

- Support `#[from_str(ignore)]` for variant.

[unreleased]: https://github.com/frozenlib/parse-display/compare/v0.9.1...HEAD
[unreleased]: https://github.com/frozenlib/parse-display/compare/v0.10.0...HEAD
[0.10.0]: https://github.com/frozenlib/parse-display/compare/v0.9.1...v0.10.0
[0.9.1]: https://github.com/frozenlib/parse-display/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/frozenlib/parse-display/compare/v0.8.2...v0.9.0
[0.8.2]: https://github.com/frozenlib/parse-display/compare/v0.8.1...v0.8.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add this to your Cargo.toml:

```toml
[dependencies]
parse-display = "0.9.1"
parse-display = "0.10.0"
```

## Documentation
Expand Down
10 changes: 5 additions & 5 deletions parse-display-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parse-display-derive"
version = "0.9.1"
version = "0.10.0"
authors = ["frozenlib"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand All @@ -16,9 +16,9 @@ rust-version = "1.80.0"
proc-macro = true

[dependencies]
syn = { version = "2.0.66", features = ["visit"] }
syn = { version = "2.0.72", features = ["visit"] }
quote = "1.0.36"
proc-macro2 = "1.0.84"
regex = "1.10.4"
regex-syntax = "0.8.3"
proc-macro2 = "1.0.86"
regex = "1.10.6"
regex-syntax = "0.8.4"
structmeta = "0.3.0"
4 changes: 2 additions & 2 deletions parse-display-with/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parse-display-with"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["frozenlib"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,4 +19,4 @@ default = ["std"]
std = ["parse-display/std"]

[dependencies]
parse-display = { version = "0.9.0", path = "../parse-display", default-features = false }
parse-display = { version = "0.10.0", path = "../parse-display", default-features = false }
2 changes: 1 addition & 1 deletion parse-display-with/src/tests/readme_parse_display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//!
//! ```toml
//! [dependencies]
//! parse-display = "0.9.1"
//! parse-display = "0.10.0"
//! ```
//!
//! ## Documentation
Expand Down
10 changes: 5 additions & 5 deletions parse-display/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parse-display"
version = "0.9.1"
version = "0.10.0"
edition = "2021"
authors = ["frozenlib"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,12 +19,12 @@ std = ["regex", "regex-syntax"]
docs = []

[dependencies]
parse-display-derive = { version = "=0.9.1", path = "../parse-display-derive" }
regex = { version = "1.10.4", optional = true }
regex-syntax = { version = "0.8.3", optional = true }
parse-display-derive = { version = "=0.10.0", path = "../parse-display-derive" }
regex = { version = "1.10.6", optional = true }
regex-syntax = { version = "0.8.4", optional = true }

[dev-dependencies]
trybuild = "1.0.96"
trybuild = "1.0.99"

[package.metadata.docs.rs]
features = ["docs"]

0 comments on commit de8546b

Please sign in to comment.