Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Feb 7, 2023
1 parent ffc0629 commit 388d9b9
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.7.2] - 2023-02-07

### Fixes

- *(ser)* Error on i64 overflow
Expand Down Expand Up @@ -102,7 +104,8 @@ Changes:
Minor doc fix (#409)

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.1...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.2...HEAD
[0.7.2]: https://github.com/toml-rs/toml/compare/toml-v0.7.1...toml-v0.7.2
[0.7.1]: https://github.com/toml-rs/toml/compare/toml-v0.7.0...toml-v0.7.1
[0.7.0]: https://github.com/toml-rs/toml/compare/toml-v0.6.0...toml-v0.7.0
[0.6.0]: https://github.com/toml-rs/toml/compare/70caf40...toml-v0.6.0
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.7.1"
version = "0.7.2"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["encoding", "toml"]
Expand Down Expand Up @@ -51,7 +51,7 @@ preserve_order = ["indexmap"]
[dependencies]
serde = "1.0.145"
indexmap = { version = "1.9.1", optional = true }
toml_edit = { version = "0.19.2", path = "../toml_edit", features = ["serde"], optional = true }
toml_edit = { version = "0.19.3", path = "../toml_edit", features = ["serde"], optional = true }
toml_datetime = { version = "0.6.1", path = "../toml_datetime", features = ["serde"] }
serde_spanned = { version = "0.6.1", 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.19.3] - 2023-02-07

### Fixes

- *(ser)* Error on i64 overflow
Expand Down Expand Up @@ -454,7 +456,8 @@ This release was sponsored by Futurewei
- `array.push` now returns a `Result`.

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.2...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.3...HEAD
[0.19.3]: https://github.com/toml-rs/toml/compare/v0.19.2...v0.19.3
[0.19.2]: https://github.com/toml-rs/toml/compare/v0.19.1...v0.19.2
[0.19.1]: https://github.com/toml-rs/toml/compare/v0.19.0...v0.19.1
[0.19.0]: https://github.com/toml-rs/toml/compare/v0.18.1...v0.19.0
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.19.2"
version = "0.19.3"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["encoding", "toml"]
Expand Down

0 comments on commit 388d9b9

Please sign in to comment.