Skip to content

Commit 0945943

Browse files
committed
chore: Release
1 parent b4cc00a commit 0945943

File tree

9 files changed

+30
-18
lines changed

9 files changed

+30
-18
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/serde_spanned/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.6.2] - 2023-05-18
11+
1012
### Compatibility
1113

1214
MSRV is now 1.64.0
@@ -20,6 +22,7 @@ MSRV is now 1.64.0
2022
## [0.6.0] - 2023-01-20
2123

2224
<!-- next-url -->
23-
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.1...HEAD
25+
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.2...HEAD
26+
[0.6.2]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.1...serde_spanned-v0.6.2
2427
[0.6.1]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.0...serde_spanned-v0.6.1
2528
[0.6.0]: https://github.com/toml-rs/toml/compare/205859ff8c88fcc351ca55abc08139a6785fd075...serde_spanned-v0.6.0

crates/serde_spanned/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_spanned"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
readme = "README.md"
55
keywords = ["serde", "span"]
66
categories = ["encoding", "parser-implementations", "parsing", "config"]

crates/toml/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.7.4] - 2023-05-18
11+
1012
### Features
1113

1214
- *(ser)* Newtype variant support
@@ -120,7 +122,8 @@ Changes:
120122
Minor doc fix (#409)
121123

122124
<!-- next-url -->
123-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.3...HEAD
125+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.4...HEAD
126+
[0.7.4]: https://github.com/toml-rs/toml/compare/toml-v0.7.3...toml-v0.7.4
124127
[0.7.3]: https://github.com/toml-rs/toml/compare/toml-v0.7.2...toml-v0.7.3
125128
[0.7.2]: https://github.com/toml-rs/toml/compare/toml-v0.7.1...toml-v0.7.2
126129
[0.7.1]: https://github.com/toml-rs/toml/compare/toml-v0.7.0...toml-v0.7.1

crates/toml/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
readme = "README.md"
55
keywords = ["encoding", "toml"]
66
categories = ["encoding", "parser-implementations", "parsing", "config"]
@@ -43,9 +43,9 @@ preserve_order = ["indexmap"]
4343
[dependencies]
4444
serde = "1.0.145"
4545
indexmap = { version = "1.9.1", optional = true }
46-
toml_edit = { version = "0.19.6", path = "../toml_edit", features = ["serde"], optional = true }
47-
toml_datetime = { version = "0.6.1", path = "../toml_datetime", features = ["serde"] }
48-
serde_spanned = { version = "0.6.1", path = "../serde_spanned", features = ["serde"] }
46+
toml_edit = { version = "0.19.9", path = "../toml_edit", features = ["serde"], optional = true }
47+
toml_datetime = { version = "0.6.2", path = "../toml_datetime", features = ["serde"] }
48+
serde_spanned = { version = "0.6.2", path = "../serde_spanned", features = ["serde"] }
4949

5050
[dev-dependencies]
5151
serde = { version = "1.0.160", features = ["derive"] }

crates/toml_datetime/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.6.2] - 2023-05-18
11+
1012
### Compatibility
1113

1214
MSRV is now 1.64.0
@@ -33,7 +35,8 @@ MSRV is now 1.64.0
3335
## [0.5.0] - 2022-10-21
3436

3537
<!-- next-url -->
36-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.1...HEAD
38+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.2...HEAD
39+
[0.6.2]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.1...toml_datetime-v0.6.2
3740
[0.6.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.0...toml_datetime-v0.6.1
3841
[0.6.0]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.5.1...toml_datetime-v0.6.0
3942
[0.5.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.5.0...toml_datetime-v0.5.1

crates/toml_datetime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_datetime"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
readme = "README.md"
55
keywords = ["encoding", "toml"]
66
categories = ["encoding", "parser-implementations", "parsing", "config"]

crates/toml_edit/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.19.9] - 2023-05-18
11+
1012
### Features
1113

1214
- *(ser)* Newtype variant support
@@ -494,7 +496,8 @@ This release was sponsored by Futurewei
494496
- `array.push` now returns a `Result`.
495497

496498
<!-- next-url -->
497-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.8...HEAD
499+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.9...HEAD
500+
[0.19.9]: https://github.com/toml-rs/toml/compare/v0.19.8...v0.19.9
498501
[0.19.8]: https://github.com/toml-rs/toml/compare/v0.19.7...v0.19.8
499502
[0.19.7]: https://github.com/toml-rs/toml/compare/v0.19.6...v0.19.7
500503
[0.19.6]: https://github.com/toml-rs/toml/compare/v0.19.5...v0.19.6

crates/toml_edit/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.19.8"
3+
version = "0.19.9"
44
readme = "README.md"
55
keywords = ["encoding", "toml"]
66
categories = ["encoding", "parser-implementations", "parsing", "config"]
@@ -43,8 +43,8 @@ indexmap = { version = "1.9.1", features = ["std"] }
4343
winnow = "0.4.6"
4444
serde = { version = "1.0.145", optional = true }
4545
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
46-
toml_datetime = { version = "0.6.1", path = "../toml_datetime" }
47-
serde_spanned = { version = "0.6.1", path = "../serde_spanned", features = ["serde"], optional = true }
46+
toml_datetime = { version = "0.6.2", path = "../toml_datetime" }
47+
serde_spanned = { version = "0.6.2", path = "../serde_spanned", features = ["serde"], optional = true }
4848

4949
[dev-dependencies]
5050
serde_json = "1.0.96"

0 commit comments

Comments
 (0)