Skip to content

Commit 39eea9e

Browse files
committed
chore: Release
1 parent 9e87c84 commit 39eea9e

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

Cargo.lock

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

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.7.7] - 2023-09-08
11+
1012
### Fixes
1113

1214
- *(ser)* Error rather than drop whole arrays when a single element is `None`
@@ -138,7 +140,8 @@ Changes:
138140
Minor doc fix (#409)
139141

140142
<!-- next-url -->
141-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.6...HEAD
143+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.7...HEAD
144+
[0.7.7]: https://github.com/toml-rs/toml/compare/toml-v0.7.6...toml-v0.7.7
142145
[0.7.6]: https://github.com/toml-rs/toml/compare/toml-v0.7.5...toml-v0.7.6
143146
[0.7.5]: https://github.com/toml-rs/toml/compare/toml-v0.7.4...toml-v0.7.5
144147
[0.7.4]: https://github.com/toml-rs/toml/compare/toml-v0.7.3...toml-v0.7.4

crates/toml/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.7.6"
3+
version = "0.7.7"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = """
@@ -42,7 +42,7 @@ preserve_order = ["indexmap"]
4242
[dependencies]
4343
serde = "1.0.145"
4444
indexmap = { version = "2.0.0", optional = true }
45-
toml_edit = { version = "0.19.14", path = "../toml_edit", features = ["serde"], optional = true }
45+
toml_edit = { version = "0.19.15", path = "../toml_edit", features = ["serde"], optional = true }
4646
toml_datetime = { version = "0.6.3", path = "../toml_datetime", features = ["serde"] }
4747
serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"] }
4848

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.19.15] - 2023-09-08
11+
1012
### Fixes
1113

1214
- *(ser)* Error rather than drop whole arrays when a single element is `None`
@@ -530,7 +532,8 @@ This release was sponsored by Futurewei
530532
- `array.push` now returns a `Result`.
531533

532534
<!-- next-url -->
533-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.14...HEAD
535+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.15...HEAD
536+
[0.19.15]: https://github.com/toml-rs/toml/compare/v0.19.14...v0.19.15
534537
[0.19.14]: https://github.com/toml-rs/toml/compare/v0.19.13...v0.19.14
535538
[0.19.13]: https://github.com/toml-rs/toml/compare/v0.19.12...v0.19.13
536539
[0.19.12]: https://github.com/toml-rs/toml/compare/v0.19.11...v0.19.12

crates/toml_edit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.19.14"
3+
version = "0.19.15"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Yet another format-preserving TOML parser."

0 commit comments

Comments
 (0)