Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jun 24, 2023
1 parent 8ef76fb commit bd45f69
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 20 deletions.
12 changes: 6 additions & 6 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/serde_spanned/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.3] - 2023-06-24

## [0.6.2] - 2023-05-18

### Compatibility
Expand All @@ -22,7 +24,8 @@ MSRV is now 1.64.0
## [0.6.0] - 2023-01-20

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.2...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.3...HEAD
[0.6.3]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.2...serde_spanned-v0.6.3
[0.6.2]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.1...serde_spanned-v0.6.2
[0.6.1]: https://github.com/toml-rs/toml/compare/serde_spanned-v0.6.0...serde_spanned-v0.6.1
[0.6.0]: https://github.com/toml-rs/toml/compare/205859ff8c88fcc351ca55abc08139a6785fd075...serde_spanned-v0.6.0
2 changes: 1 addition & 1 deletion crates/serde_spanned/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_spanned"
version = "0.6.2"
version = "0.6.3"
keywords = ["serde", "span"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "Serde-compatible spanned Value"
Expand Down
2 changes: 1 addition & 1 deletion crates/serde_toml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serde_toml"
version = "0.0.1"
version = "0.0.2"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "See instead `toml`"
Expand Down
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.5] - 2023-06-24

### Internal

- Update `indexmap`
Expand Down Expand Up @@ -126,7 +128,8 @@ Changes:
Minor doc fix (#409)

<!-- next-url -->
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.4...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.5...HEAD
[0.7.5]: https://github.com/toml-rs/toml/compare/toml-v0.7.4...toml-v0.7.5
[0.7.4]: https://github.com/toml-rs/toml/compare/toml-v0.7.3...toml-v0.7.4
[0.7.3]: https://github.com/toml-rs/toml/compare/toml-v0.7.2...toml-v0.7.3
[0.7.2]: https://github.com/toml-rs/toml/compare/toml-v0.7.1...toml-v0.7.2
Expand Down
8 changes: 4 additions & 4 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.4"
version = "0.7.5"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = """
Expand Down Expand Up @@ -41,9 +41,9 @@ preserve_order = ["indexmap"]
[dependencies]
serde = "1.0.145"
indexmap = { version = "2.0.0", optional = true }
toml_edit = { version = "0.19.10", path = "../toml_edit", features = ["serde"], optional = true }
toml_datetime = { version = "0.6.2", path = "../toml_datetime", features = ["serde"] }
serde_spanned = { version = "0.6.2", path = "../serde_spanned", features = ["serde"] }
toml_edit = { version = "0.19.11", path = "../toml_edit", features = ["serde"], optional = true }
toml_datetime = { version = "0.6.3", path = "../toml_datetime", features = ["serde"] }
serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"] }

[dev-dependencies]
serde = { version = "1.0.160", features = ["derive"] }
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.3] - 2023-06-24

## [0.6.2] - 2023-05-18

### Compatibility
Expand Down Expand Up @@ -35,7 +37,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.2...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.3...HEAD
[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
[0.6.1]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.6.0...toml_datetime-v0.6.1
[0.6.0]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.5.1...toml_datetime-v0.6.0
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.2"
version = "0.6.3"
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.19.11] - 2023-06-24

### Internal

- Update `indexmap`
Expand Down Expand Up @@ -506,7 +508,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.10...HEAD
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.11...HEAD
[0.19.11]: https://github.com/toml-rs/toml/compare/v0.19.10...v0.19.11
[0.19.10]: https://github.com/toml-rs/toml/compare/v0.19.9...v0.19.10
[0.19.9]: https://github.com/toml-rs/toml/compare/v0.19.8...v0.19.9
[0.19.8]: https://github.com/toml-rs/toml/compare/v0.19.7...v0.19.8
Expand Down
6 changes: 3 additions & 3 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.19.10"
version = "0.19.11"
keywords = ["encoding", "toml"]
categories = ["encoding", "parser-implementations", "parsing", "config"]
description = "Yet another format-preserving TOML parser."
Expand Down Expand Up @@ -41,8 +41,8 @@ indexmap = { version = "2.0.0", features = ["std"] }
winnow = "0.4.6"
serde = { version = "1.0.145", optional = true }
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
toml_datetime = { version = "0.6.2", path = "../toml_datetime" }
serde_spanned = { version = "0.6.2", path = "../serde_spanned", features = ["serde"], optional = true }
toml_datetime = { version = "0.6.3", path = "../toml_datetime" }
serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"], optional = true }

[dev-dependencies]
serde_json = "1.0.96"
Expand Down

0 comments on commit bd45f69

Please sign in to comment.