Skip to content

Commit 59ae12d

Browse files
committed
chore: Release
1 parent 501bbcd commit 59ae12d

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/toml/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.7.6] - 2023-07-05
11+
1012
### Features
1113

1214
- Add `Map::retain`
@@ -132,7 +134,8 @@ Changes:
132134
Minor doc fix (#409)
133135

134136
<!-- next-url -->
135-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.5...HEAD
137+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.7.6...HEAD
138+
[0.7.6]: https://github.com/toml-rs/toml/compare/toml-v0.7.5...toml-v0.7.6
136139
[0.7.5]: https://github.com/toml-rs/toml/compare/toml-v0.7.4...toml-v0.7.5
137140
[0.7.4]: https://github.com/toml-rs/toml/compare/toml-v0.7.3...toml-v0.7.4
138141
[0.7.3]: https://github.com/toml-rs/toml/compare/toml-v0.7.2...toml-v0.7.3

crates/toml/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.7.5"
3+
version = "0.7.6"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = """
@@ -41,7 +41,7 @@ preserve_order = ["indexmap"]
4141
[dependencies]
4242
serde = "1.0.145"
4343
indexmap = { version = "2.0.0", optional = true }
44-
toml_edit = { version = "0.19.11", path = "../toml_edit", features = ["serde"], optional = true }
44+
toml_edit = { version = "0.19.12", path = "../toml_edit", features = ["serde"], optional = true }
4545
toml_datetime = { version = "0.6.3", path = "../toml_datetime", features = ["serde"] }
4646
serde_spanned = { version = "0.6.3", path = "../serde_spanned", features = ["serde"] }
4747

crates/toml_edit/CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.19.12] - 2023-07-05
11+
1012
### Features
1113

1214
- Add `Array::retain`, `ArrayOfTables::retain`, `InlineTable::retain`, `Table::retain`
@@ -512,7 +514,8 @@ This release was sponsored by Futurewei
512514
- `array.push` now returns a `Result`.
513515

514516
<!-- next-url -->
515-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.11...HEAD
517+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.19.12...HEAD
518+
[0.19.12]: https://github.com/toml-rs/toml/compare/v0.19.11...v0.19.12
516519
[0.19.11]: https://github.com/toml-rs/toml/compare/v0.19.10...v0.19.11
517520
[0.19.10]: https://github.com/toml-rs/toml/compare/v0.19.9...v0.19.10
518521
[0.19.9]: https://github.com/toml-rs/toml/compare/v0.19.8...v0.19.9

crates/toml_edit/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.19.11"
3+
version = "0.19.12"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Yet another format-preserving TOML parser."

0 commit comments

Comments
 (0)