Skip to content

Commit 912761b

Browse files
committed
chore: Release
1 parent 40b02a3 commit 912761b

File tree

9 files changed

+31
-19
lines changed

9 files changed

+31
-19
lines changed

Cargo.lock

Lines changed: 6 additions & 6 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.6] - 2024-05-15
11+
1012
## [0.6.5] - 2023-12-19
1113

1214
### Features
@@ -36,7 +38,8 @@ MSRV is now 1.64.0
3638
## [0.6.0] - 2023-01-20
3739

3840
<!-- next-url -->
39-
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.5...HEAD
41+
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.6...HEAD
42+
[0.6.6]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.5...serde_spanned-v0.6.6
4043
[0.6.5]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.4...serde_spanned-v0.6.5
4144
[0.6.4]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.3...serde_spanned-v0.6.4
4245
[0.6.3]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.2...serde_spanned-v0.6.3

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.5"
3+
version = "0.6.6"
44
keywords = ["serde", "span"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Serde-compatible spanned Value"

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.8.13] - 2024-05-15
11+
1012
## [0.8.12] - 2024-03-18
1113

1214
### Fixes
@@ -237,7 +239,8 @@ Changes:
237239
Minor doc fix (#409)
238240

239241
<!-- next-url -->
240-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...HEAD
242+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.13...HEAD
243+
[0.8.13]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...toml-v0.8.13
241244
[0.8.12]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12
242245
[0.8.11]: https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11
243246
[0.8.10]: https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10

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.8.12"
3+
version = "0.8.13"
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.12", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
46-
toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] }
47-
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"] }
45+
toml_edit = { version = "0.22.13", 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"] }
4848

4949
[dev-dependencies]
5050
serde = { version = "1.0.199", 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.6] - 2024-05-15
11+
1012
## [0.6.5] - 2023-10-23
1113

1214
### Fixes
@@ -46,7 +48,8 @@ MSRV is now 1.64.0
4648
## [0.5.0] - 2022-10-21
4749

4850
<!-- next-url -->
49-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...HEAD
51+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.6...HEAD
52+
[0.6.6]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...toml_datetime-v0.6.6
5053
[0.6.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...toml_datetime-v0.6.5
5154
[0.6.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...toml_datetime-v0.6.4
5255
[0.6.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.2...toml_datetime-v0.6.3

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.5"
3+
version = "0.6.6"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "A TOML-compatible datetime type"

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.22.13] - 2024-05-15
11+
1012
## [0.22.12] - 2024-04-19
1113

1214
### Fixes
@@ -694,7 +696,8 @@ This release was sponsored by Futurewei
694696
- `array.push` now returns a `Result`.
695697

696698
<!-- next-url -->
697-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.12...HEAD
699+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.13...HEAD
700+
[0.22.13]: https://github.com/toml-rs/toml/compare/v0.22.12...v0.22.13
698701
[0.22.12]: https://github.com/toml-rs/toml/compare/v0.22.11...v0.22.12
699702
[0.22.11]: https://github.com/toml-rs/toml/compare/v0.22.10...v0.22.11
700703
[0.22.10]: https://github.com/toml-rs/toml/compare/v0.22.9...v0.22.10

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.22.12"
3+
version = "0.22.13"
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.5", path = "../toml_datetime" }
48-
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"], 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 }
4949

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

0 commit comments

Comments
 (0)