File tree Expand file tree Collapse file tree 6 files changed +32
-15
lines changed Expand file tree Collapse file tree 6 files changed +32
-15
lines changed Original file line number Diff line number Diff line change 6
6
7
7
### Changed
8
8
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
+
9
25
- Set ` rust-version ` to 1.80.0.
10
26
- In debug mode, it will panic if the result of ` FromStrFormat::regex ` varies for the same field depending on the type parameters.
11
27
- Change the behavior when both ` #[display("...")] ` and ` #[from_str("...")] ` are specified for a field. ([ dc14a2b] )
95
111
96
112
- Support ` #[from_str(ignore)] ` for variant.
97
113
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
99
116
[ 0.9.1 ] : https://github.com/frozenlib/parse-display/compare/v0.9.0...v0.9.1
100
117
[ 0.9.0 ] : https://github.com/frozenlib/parse-display/compare/v0.8.2...v0.9.0
101
118
[ 0.8.2 ] : https://github.com/frozenlib/parse-display/compare/v0.8.1...v0.8.2
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Add this to your Cargo.toml:
13
13
14
14
``` toml
15
15
[dependencies ]
16
- parse-display = " 0.9.1 "
16
+ parse-display = " 0.10.0 "
17
17
```
18
18
19
19
## Documentation
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " parse-display-derive"
3
- version = " 0.9.1 "
3
+ version = " 0.10.0 "
4
4
authors = [" frozenlib" ]
5
5
license = " MIT OR Apache-2.0"
6
6
readme = " ../README.md"
@@ -16,9 +16,9 @@ rust-version = "1.80.0"
16
16
proc-macro = true
17
17
18
18
[dependencies ]
19
- syn = { version = " 2.0.66 " , features = [" visit" ] }
19
+ syn = { version = " 2.0.72 " , features = [" visit" ] }
20
20
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 "
24
24
structmeta = " 0.3.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " parse-display-with"
3
- version = " 0.0.1 "
3
+ version = " 0.0.2 "
4
4
edition = " 2021"
5
5
authors = [" frozenlib" ]
6
6
license = " MIT OR Apache-2.0"
@@ -19,4 +19,4 @@ default = ["std"]
19
19
std = [" parse-display/std" ]
20
20
21
21
[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 }
Original file line number Diff line number Diff line change 14
14
//!
15
15
//! ```toml
16
16
//! [dependencies]
17
- //! parse-display = "0.9.1 "
17
+ //! parse-display = "0.10.0 "
18
18
//! ```
19
19
//!
20
20
//! ## Documentation
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " parse-display"
3
- version = " 0.9.1 "
3
+ version = " 0.10.0 "
4
4
edition = " 2021"
5
5
authors = [" frozenlib" ]
6
6
license = " MIT OR Apache-2.0"
@@ -19,12 +19,12 @@ std = ["regex", "regex-syntax"]
19
19
docs = []
20
20
21
21
[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 }
25
25
26
26
[dev-dependencies ]
27
- trybuild = " 1.0.96 "
27
+ trybuild = " 1.0.99 "
28
28
29
29
[package .metadata .docs .rs ]
30
30
features = [" docs" ]
You can’t perform that action at this time.
0 commit comments