Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 23, 2023
1 parent 1ff8d41 commit 7ba37bb
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 13 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.4] - 2023-10-23

### Fixes

- *(parser)* Error on invalid days of month, accounting for leap years
Expand Down Expand Up @@ -174,7 +176,8 @@ Changes:
Minor doc fix (#409)

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.3...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.4...HEAD
[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
[0.8.2]: https://github.com/toml-rs/toml/compare/toml-v0.8.1...toml-v0.8.2
[0.8.1]: https://github.com/toml-rs/toml/compare/toml-v0.8.0...toml-v0.8.1
Expand Down
6 changes: 3 additions & 3 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.3"
version = "0.8.4"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = """
Expand Down Expand Up @@ -42,8 +42,8 @@ preserve_order = ["indexmap"]
[dependencies]
serde = "1.0.145"
indexmap = { version = "2.0.0", optional = true }
toml_edit = { version = "0.20.3", path = "../toml_edit", features = ["serde"], optional = true }
toml_datetime = { version = "0.6.4", path = "../toml_datetime", features = ["serde"] }
toml_edit = { version = "0.20.4", 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"] }

[dev-dependencies]
Expand Down
5 changes: 4 additions & 1 deletion crates/toml_datetime/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.6.5] - 2023-10-23

### Fixes

- Allow leapseconds in `FromStr`
Expand Down Expand Up @@ -44,7 +46,8 @@ MSRV is now 1.64.0
## [0.5.0] - 2022-10-21

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.5...HEAD
[0.6.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.4...toml_datetime-v0.6.5
[0.6.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...toml_datetime-v0.6.4
[0.6.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.2...toml_datetime-v0.6.3
[0.6.2]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.1...toml_datetime-v0.6.2
Expand Down
2 changes: 1 addition & 1 deletion crates/toml_datetime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "toml_datetime"
version = "0.6.4"
version = "0.6.5"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "A TOML-compatible datetime type"
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.4] - 2023-10-23

### Fixes

- *(parser)* Error on invalid days of month, accounting for leap years
Expand Down Expand Up @@ -564,7 +566,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.3...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.20.4...HEAD
[0.20.4]: https://github.com/toml-rs/toml/compare/v0.20.3...v0.20.4
[0.20.3]: https://github.com/toml-rs/toml/compare/v0.20.2...v0.20.3
[0.20.2]: https://github.com/toml-rs/toml/compare/v0.20.1...v0.20.2
[0.20.1]: https://github.com/toml-rs/toml/compare/v0.20.0...v0.20.1
Expand Down
4 changes: 2 additions & 2 deletions 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.3"
version = "0.20.4"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "Yet another format-preserving TOML parser."
Expand Down Expand Up @@ -41,7 +41,7 @@ indexmap = { version = "2.0.0", features = ["std"] }
winnow = "0.5.0"
serde = { version = "1.0.145", optional = true }
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
toml_datetime = { version = "0.6.4", path = "../toml_datetime" }
toml_datetime = { version = "0.6.5", path = "../toml_datetime" }
serde_spanned = { version = "0.6.4", path = "../serde_spanned", features = ["serde"], optional = true }

[dev-dependencies]
Expand Down

0 comments on commit 7ba37bb

Please sign in to comment.