Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 27, 2023
1 parent 5bdc0f7 commit d5676a8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
6 changes: 3 additions & 3 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.6] - 2023-10-27

### Fixes

- *(ser)* Make sign of `nan` deterministic by always being positive
Expand Down Expand Up @@ -187,7 +189,8 @@ Changes:
Minor doc fix (#409)

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.5...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.6...HEAD
[0.8.6]: https://github.com/toml-rs/toml/compare/toml-v0.8.5...toml-v0.8.6
[0.8.5]: https://github.com/toml-rs/toml/compare/toml-v0.8.4...toml-v0.8.5
[0.8.4]: https://github.com/toml-rs/toml/compare/toml-v0.8.3...toml-v0.8.4
[0.8.3]: https://github.com/toml-rs/toml/compare/toml-v0.8.2...toml-v0.8.3
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.5"
version = "0.8.6"
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.20.6", path = "../toml_edit", features = ["serde"], optional = true }
toml_edit = { version = "0.20.7", path = "../toml_edit", features = ["serde"], optional = true }
toml_datetime = { version = "0.6.5", path = "../toml_datetime", features = ["serde"] }
serde_spanned = { version = "0.6.4", 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.20.7] - 2023-10-27

### Fixes

- *(ser)* Make sign of `nan` deterministic by always being positive
Expand Down Expand Up @@ -583,7 +585,8 @@ This release was sponsored by Futurewei
- `array.push` now returns a `Result`.

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.6...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.7...HEAD
[0.20.7]: https://github.com/toml-rs/toml/compare/v0.20.6...v0.20.7
[0.20.6]: https://github.com/toml-rs/toml/compare/v0.20.5...v0.20.6
[0.20.5]: https://github.com/toml-rs/toml/compare/v0.20.4...v0.20.5
[0.20.4]: https://github.com/toml-rs/toml/compare/v0.20.3...v0.20.4
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.20.6"
version = "0.20.7"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "Yet another format-preserving TOML parser."
Expand Down

0 comments on commit d5676a8

Please sign in to comment.