Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Mar 18, 2024
1 parent 7979905 commit 3a777b3
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion crates/toml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.8.12] - 2024-03-18

### Fixes

- Drop recursion limit from 128 to 100 to work on `opt-level = 0` builds
Expand Down Expand Up @@ -235,7 +237,8 @@ Changes:
Minor doc fix (#409)

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.12...HEAD
[0.8.12]: https://github.com/toml-rs/toml/compare/toml-v0.8.11...toml-v0.8.12
[0.8.11]: https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.11
[0.8.10]: https://github.com/toml-rs/toml/compare/toml-v0.8.9...toml-v0.8.10
[0.8.9]: https://github.com/toml-rs/toml/compare/toml-v0.8.8...toml-v0.8.9
Expand Down
4 changes: 2 additions & 2 deletions crates/toml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "toml"
version = "0.8.11"
version = "0.8.12"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = """
Expand Down Expand Up @@ -42,7 +42,7 @@ preserve_order = ["indexmap"]
[dependencies]
serde = "1.0.145"
indexmap = { version = "2.0.0", optional = true }
toml_edit = { version = "0.22.7", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
toml_edit = { version = "0.22.8", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] }
serde_spanned = { version = "0.6.5", path = "../serde_spanned", features = ["serde"] }

Expand Down
5 changes: 4 additions & 1 deletion crates/toml_edit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [0.22.8] - 2024-03-18

### Fixes

- Drop recursion limit from 128 to 100 to work on `opt-level = 0` builds
Expand Down Expand Up @@ -668,7 +670,8 @@ This release was sponsored by Futurewei
- `array.push` now returns a `Result`.

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.7...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.8...HEAD
[0.22.8]: https://github.com/toml-rs/toml/compare/v0.22.7...v0.22.8
[0.22.7]: https://github.com/toml-rs/toml/compare/v0.22.6...v0.22.7
[0.22.6]: https://github.com/toml-rs/toml/compare/v0.22.5...v0.22.6
[0.22.5]: https://github.com/toml-rs/toml/compare/v0.22.4...v0.22.5
Expand Down
2 changes: 1 addition & 1 deletion crates/toml_edit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "toml_edit"
version = "0.22.7"
version = "0.22.8"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "Yet another format-preserving TOML parser."
Expand Down

0 comments on commit 3a777b3

Please sign in to comment.