Skip to content

Commit 6922da3

Browse files
committed
chore: Release
1 parent fbf0a92 commit 6922da3

File tree

7 files changed

+23
-14
lines changed

7 files changed

+23
-14
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/toml/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.8.22] - 2025-04-28
11+
1012
### Fixes
1113

1214
- *(serde)* Skip key-value pairs where the value is a newtype wrapping `None`
@@ -311,7 +313,8 @@ Changes:
311313
Minor doc fix (#409)
312314

313315
<!-- next-url -->
314-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.21...HEAD
316+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.8.22...HEAD
317+
[0.8.22]: https://github.com/toml-rs/toml/compare/toml-v0.8.21...toml-v0.8.22
315318
[0.8.21]: https://github.com/toml-rs/toml/compare/toml-v0.8.20...toml-v0.8.21
316319
[0.8.20]: https://github.com/toml-rs/toml/compare/toml-v0.8.19...toml-v0.8.20
317320
[0.8.19]: https://github.com/toml-rs/toml/compare/toml-v0.8.18...toml-v0.8.19

crates/toml/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml"
3-
version = "0.8.21"
3+
version = "0.8.22"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = """
@@ -49,7 +49,7 @@ preserve_order = ["indexmap"]
4949
[dependencies]
5050
serde = "1.0.145"
5151
indexmap = { version = "2.0.0", optional = true }
52-
toml_edit = { version = "0.22.25", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
52+
toml_edit = { version = "0.22.26", path = "../toml_edit", default-features = false, features = ["serde"], optional = true }
5353
toml_datetime = { version = "0.6.9", path = "../toml_datetime", features = ["serde"] }
5454
serde_spanned = { version = "0.6.8", path = "../serde_spanned", features = ["serde"] }
5555

crates/toml_edit/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
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.22.26] - 2025-04-28
11+
1012
### Fixes
1113

1214
- *(serde)* Skip key-value pairs where the value is a newtype wrapping `None`
@@ -788,7 +790,8 @@ This release was sponsored by Futurewei
788790
- `array.push` now returns a `Result`.
789791

790792
<!-- next-url -->
791-
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.25...HEAD
793+
[Unreleased]: https://github.com/toml-rs/toml/compare/v0.22.26...HEAD
794+
[0.22.26]: https://github.com/toml-rs/toml/compare/v0.22.25...v0.22.26
792795
[0.22.25]: https://github.com/toml-rs/toml/compare/v0.22.24...v0.22.25
793796
[0.22.24]: https://github.com/toml-rs/toml/compare/v0.22.23...v0.22.24
794797
[0.22.23]: https://github.com/toml-rs/toml/compare/v0.22.22...v0.22.23

crates/toml_edit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_edit"
3-
version = "0.22.25"
3+
version = "0.22.26"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
description = "Yet another format-preserving TOML parser."
@@ -46,7 +46,7 @@ serde = { version = "1.0.145", optional = true }
4646
kstring = { version = "2.0.0", features = ["max_inline"], optional = true }
4747
toml_datetime = { version = "0.6.9", path = "../toml_datetime" }
4848
serde_spanned = { version = "0.6.8", path = "../serde_spanned", features = ["serde"], optional = true }
49-
toml_write = { version = "0.1.0", path = "../toml_write", optional = true }
49+
toml_write = { version = "0.1.1", path = "../toml_write", optional = true }
5050

5151
[dev-dependencies]
5252
serde = { version = "1.0.199", features = ["derive"] }

crates/toml_write/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@ The format is based on [Keep a Changelog].
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [0.1.1] - 2025-04-28
11+
1012
## [0.1.0] - 2025-04-25
1113

1214
Initial release
1315

1416
<!-- next-url -->
15-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.0...HEAD
17+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.1...HEAD
18+
[0.1.1]: https://github.com/toml-rs/toml/compare/toml_write-v0.1.0...toml_write-v0.1.1
1619
[0.1.0]: https://github.com/toml-rs/toml/compare/d00d2856...toml_write-v0.1.0

crates/toml_write/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toml_write"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
keywords = ["encoding", "toml"]
55
categories = ["encoding"]
66
description = """

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy