Skip to content

Commit de8546b

Browse files
committed
Version 0.10.0.
1 parent 384022a commit de8546b

File tree

6 files changed

+32
-15
lines changed

6 files changed

+32
-15
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@
66

77
### Changed
88

9+
### Deprecated
10+
11+
### Removed
12+
13+
### Fixed
14+
15+
### Performance
16+
17+
### Security
18+
19+
## [0.10.0] - 2024-08-04
20+
21+
### Added
22+
23+
### Changed
24+
925
- Set `rust-version` to 1.80.0.
1026
- In debug mode, it will panic if the result of `FromStrFormat::regex` varies for the same field depending on the type parameters.
1127
- Change the behavior when both `#[display("...")]` and `#[from_str("...")]` are specified for a field. ([dc14a2b])
@@ -95,7 +111,8 @@
95111

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

98-
[unreleased]: https://github.com/frozenlib/parse-display/compare/v0.9.1...HEAD
114+
[unreleased]: https://github.com/frozenlib/parse-display/compare/v0.10.0...HEAD
115+
[0.10.0]: https://github.com/frozenlib/parse-display/compare/v0.9.1...v0.10.0
99116
[0.9.1]: https://github.com/frozenlib/parse-display/compare/v0.9.0...v0.9.1
100117
[0.9.0]: https://github.com/frozenlib/parse-display/compare/v0.8.2...v0.9.0
101118
[0.8.2]: https://github.com/frozenlib/parse-display/compare/v0.8.1...v0.8.2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Add this to your Cargo.toml:
1313

1414
```toml
1515
[dependencies]
16-
parse-display = "0.9.1"
16+
parse-display = "0.10.0"
1717
```
1818

1919
## Documentation

parse-display-derive/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parse-display-derive"
3-
version = "0.9.1"
3+
version = "0.10.0"
44
authors = ["frozenlib"]
55
license = "MIT OR Apache-2.0"
66
readme = "../README.md"
@@ -16,9 +16,9 @@ rust-version = "1.80.0"
1616
proc-macro = true
1717

1818
[dependencies]
19-
syn = { version = "2.0.66", features = ["visit"] }
19+
syn = { version = "2.0.72", features = ["visit"] }
2020
quote = "1.0.36"
21-
proc-macro2 = "1.0.84"
22-
regex = "1.10.4"
23-
regex-syntax = "0.8.3"
21+
proc-macro2 = "1.0.86"
22+
regex = "1.10.6"
23+
regex-syntax = "0.8.4"
2424
structmeta = "0.3.0"

parse-display-with/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parse-display-with"
3-
version = "0.0.1"
3+
version = "0.0.2"
44
edition = "2021"
55
authors = ["frozenlib"]
66
license = "MIT OR Apache-2.0"
@@ -19,4 +19,4 @@ default = ["std"]
1919
std = ["parse-display/std"]
2020

2121
[dependencies]
22-
parse-display = { version = "0.9.0", path = "../parse-display", default-features = false }
22+
parse-display = { version = "0.10.0", path = "../parse-display", default-features = false }

parse-display-with/src/tests/readme_parse_display.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
//!
1515
//! ```toml
1616
//! [dependencies]
17-
//! parse-display = "0.9.1"
17+
//! parse-display = "0.10.0"
1818
//! ```
1919
//!
2020
//! ## Documentation

parse-display/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parse-display"
3-
version = "0.9.1"
3+
version = "0.10.0"
44
edition = "2021"
55
authors = ["frozenlib"]
66
license = "MIT OR Apache-2.0"
@@ -19,12 +19,12 @@ std = ["regex", "regex-syntax"]
1919
docs = []
2020

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

2626
[dev-dependencies]
27-
trybuild = "1.0.96"
27+
trybuild = "1.0.99"
2828

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

0 commit comments

Comments
 (0)