Skip to content

Commit eb86543

Browse files
committed
chore: Release
1 parent 246b292 commit eb86543

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

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.11] - 2024-03-11
11+
1012
### Performance
1113

1214
- *(de)* Remove an allocation when parsing
@@ -229,7 +231,8 @@ Changes:
229231
Minor doc fix (#409)
230232

231233
<!-- next-url -->
232-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.10...HEAD
234+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...HEAD
235+
[0.8.11]: https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11
233236
[0.8.10]: https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10
234237
[0.8.9]: https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.9
235238
[0.8.8]: https://github.com/toml-rs/toml/compare/toml-v0.8.7...toml-v0.8.8

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.10"
3+
version = "0.8.11"
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.22.6", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
45+
toml_edit = { version = "0.22.7", 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.22.7] - 2024-03-11
11+
1012
### Features
1113

1214
- Added `ImDocument` for parsing into an immutable document for performance and looking up spans
@@ -662,7 +664,8 @@ This release was sponsored by Futurewei
662664
- `array.push` now returns a `Result`.
663665

664666
<!-- next-url -->
665-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.6...HEAD
667+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.7...HEAD
668+
[0.22.7]: https://github.com/toml-rs/toml/compare/v0.22.6...v0.22.7
666669
[0.22.6]: https://github.com/toml-rs/toml/compare/v0.22.5...v0.22.6
667670
[0.22.5]: https://github.com/toml-rs/toml/compare/v0.22.4...v0.22.5
668671
[0.22.4]: https://github.com/toml-rs/toml/compare/v0.22.3...v0.22.4

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

0 commit comments

Comments
 (0)