Skip to content

Commit f5c6f4b

Browse files
committed
chore: Release
1 parent 24e599e commit f5c6f4b

5 files changed

Lines changed: 15 additions & 9 deletions

File tree

Cargo.lock

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

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.9] - 2024-01-31
11+
1012
### Fixes
1113

1214
- *(de)* Improve error span for empty tables
@@ -201,7 +203,8 @@ Changes:
201203
Minor doc fix (#409)
202204

203205
<!-- next-url -->
204-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.8...HEAD
206+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.9...HEAD
207+
[0.8.9]: https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.9
205208
[0.8.8]: https://github.com/toml-rs/toml/compare/toml-v0.8.7...toml-v0.8.8
206209
[0.8.7]: https://github.com/toml-rs/toml/compare/toml-v0.8.6...toml-v0.8.7
207210
[0.8.6]: https://github.com/toml-rs/toml/compare/toml-v0.8.5...toml-v0.8.6

crates/toml/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.8.8"
3+
version = "0.8.9"
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.21.0", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
45+
toml_edit = { version = "0.21.1", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
4646
toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] }
4747
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"] }
4848

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.21.1] - 2024-01-31
11+
1012
### Fixes
1113

1214
- *(de)* Improve error span for empty tables
@@ -595,7 +597,8 @@ This release was sponsored by Futurewei
595597
- `array.push` now returns a `Result`.
596598

597599
<!-- next-url -->
598-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.21.0...HEAD
600+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.21.1...HEAD
601+
[0.21.1]: https://github.com/toml-rs/toml/compare/v0.21.0...v0.21.1
599602
[0.21.0]: https://github.com/toml-rs/toml/compare/v0.20.7...v0.21.0
600603
[0.20.7]: https://github.com/toml-rs/toml/compare/v0.20.6...v0.20.7
601604
[0.20.6]: https://github.com/toml-rs/toml/compare/v0.20.5...v0.20.6

crates/toml_edit/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_edit"
3-
version = "0.21.0"
3+
version = "0.21.1"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Yet another format-preserving TOML parser."

0 commit comments

Comments
 (0)