Skip to content

Commit 4ac61f7

Browse files
committed
chore: Release
1 parent a5eb1ac commit 4ac61f7

File tree

9 files changed

+31
-19
lines changed

9 files changed

+31
-19
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/serde_spanned/CHANGELOG.md

+4-1
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.7] - 2024-07-25
11+
1012
## [0.6.6] - 2024-05-15
1113

1214
## [0.6.5] - 2023-12-19
@@ -38,7 +40,8 @@ MSRV is now 1.64.0
3840
## [0.6.0] - 2023-01-20
3941

4042
<!-- next-url -->
41-
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.6...HEAD
43+
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.7...HEAD
44+
[0.6.7]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.6...serde_spanned-v0.6.7
4245
[0.6.6]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.5...serde_spanned-v0.6.6
4346
[0.6.5]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.4...serde_spanned-v0.6.5
4447
[0.6.4]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.3...serde_spanned-v0.6.4

crates/serde_spanned/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "serde_spanned"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
keywords = ["serde", "span"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Serde-compatible spanned Value"

crates/toml/CHANGELOG.md

+4-1
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.8.16] - 2024-07-25
11+
1012
## [0.8.15] - 2024-07-17
1113

1214
### Fixes
@@ -252,7 +254,8 @@ Changes:
252254
Minor doc fix (#409)
253255

254256
<!-- next-url -->
255-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.15...HEAD
257+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.16...HEAD
258+
[0.8.16]: https://github.com/toml-rs/toml/compare/toml-v0.8.15...toml-v0.8.16
256259
[0.8.15]: https://github.com/toml-rs/toml/compare/toml-v0.8.14...toml-v0.8.15
257260
[0.8.14]: https://github.com/toml-rs/toml/compare/toml-v0.8.13...toml-v0.8.14
258261
[0.8.13]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13

crates/toml/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.8.15"
3+
version = "0.8.16"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = """
@@ -42,9 +42,9 @@ preserve_order = ["indexmap"]
4242
[dependencies]
4343
serde = "1.0.145"
4444
indexmap = { version = "2.0.0", optional = true }
45-
toml_edit = { version = "0.22.16", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
46-
toml_datetime = { version = "0.6.6", path = "../toml_datetime", features = ["serde"] }
47-
serde_spanned = { version = "0.6.6", path = "../serde_spanned", features = ["serde"] }
45+
toml_edit = { version = "0.22.17", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
46+
toml_datetime = { version = "0.6.7", path = "../toml_datetime", features = ["serde"] }
47+
serde_spanned = { version = "0.6.7", path = "../serde_spanned", features = ["serde"] }
4848

4949
[dev-dependencies]
5050
serde = { version = "1.0.199", features = ["derive"] }

crates/toml_datetime/CHANGELOG.md

+4-1
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.7] - 2024-07-25
11+
1012
## [0.6.6] - 2024-05-15
1113

1214
## [0.6.5] - 2023-10-23
@@ -48,7 +50,8 @@ MSRV is now 1.64.0
4850
## [0.5.0] - 2022-10-21
4951

5052
<!-- next-url -->
51-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.6...HEAD
53+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.7...HEAD
54+
[0.6.7]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.6...toml_datetime-v0.6.7
5255
[0.6.6]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...toml_datetime-v0.6.6
5356
[0.6.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...toml_datetime-v0.6.5
5457
[0.6.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...toml_datetime-v0.6.4

crates/toml_datetime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_datetime"
3-
version = "0.6.6"
3+
version = "0.6.7"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "A TOML-compatible datetime type"

crates/toml_edit/CHANGELOG.md

+4-1
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.22.17] - 2024-07-25
11+
1012
## [0.22.16] - 2024-07-17
1113

1214
### Fixes
@@ -715,7 +717,8 @@ This release was sponsored by Futurewei
715717
- `array.push` now returns a `Result`.
716718

717719
<!-- next-url -->
718-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.16...HEAD
720+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.17...HEAD
721+
[0.22.17]: https://github.com/toml-rs/toml/compare/v0.22.16...v0.22.17
719722
[0.22.16]: https://github.com/toml-rs/toml/compare/v0.22.15...v0.22.16
720723
[0.22.15]: https://github.com/toml-rs/toml/compare/v0.22.14...v0.22.15
721724
[0.22.14]: https://github.com/toml-rs/toml/compare/v0.22.13...v0.22.14

crates/toml_edit/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.22.16"
3+
version = "0.22.17"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Yet another format-preserving TOML parser."
@@ -44,8 +44,8 @@ indexmap = { version = "2.0.0", features = ["std"] }
4444
winnow = { version = "0.6.0", optional = true }
4545
serde = { version = "1.0.145", optional = true }
4646
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
47-
toml_datetime = { version = "0.6.6", path = "../toml_datetime" }
48-
serde_spanned = { version = "0.6.6", path = "../serde_spanned", features = ["serde"], optional = true }
47+
toml_datetime = { version = "0.6.7", path = "../toml_datetime" }
48+
serde_spanned = { version = "0.6.7", path = "../serde_spanned", features = ["serde"], optional = true }
4949

5050
[dev-dependencies]
5151
serde_json = "1.0.116"

0 commit comments

Comments
 (0)