Skip to content

Commit 34fe772

Browse files
committed
chore: Release
1 parent 7fa8e0d commit 34fe772

File tree

6 files changed

+17
-11
lines changed

6 files changed

+17
-11
lines changed

Cargo.lock

Lines changed: 5 additions & 5 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 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.0.0] - 2026-02-11
11+
1012
### Fixes
1113

1214
- Wrap `Time::second` and `Time::nanosecond` in `Option`, preserving whether they are present or not
@@ -450,7 +452,8 @@ Changes:
450452
Minor doc fix (#409)
451453

452454
<!-- next-url -->
453-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v0.9.12...HEAD
455+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml-v1.0.0...HEAD
456+
[1.0.0]: https://github.com/toml-rs/toml/compare/toml-v0.9.12...toml-v1.0.0
454457
[0.9.12]: https://github.com/toml-rs/toml/compare/toml-v0.9.11...toml-v0.9.12
455458
[0.9.11]: https://github.com/toml-rs/toml/compare/toml-v0.9.10...toml-v0.9.11
456459
[0.9.10]: https://github.com/toml-rs/toml/compare/toml-v0.9.9...toml-v0.9.10

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.9.12+spec-1.1.0"
3+
version = "1.0.0+spec-1.1.0"
44
description = """
55
A native Rust encoder and decoder of TOML-formatted files and streams. Provides
66
implementations of the standard Serialize/Deserialize traits for TOML data to
@@ -55,7 +55,7 @@ toml_parser = { version = "1.0.7", path = "../toml_parser", default-features = f
5555
winnow = { version = "0.7.13", default-features = false, optional = true }
5656
anstream = { version = "0.6.20", optional = true }
5757
anstyle = { version = "1.0.11", optional = true }
58-
toml_datetime = { version = "0.7.5", path = "../toml_datetime", default-features = false, features = ["alloc"] }
58+
toml_datetime = { version = "1.0.0", path = "../toml_datetime", default-features = false, features = ["alloc"] }
5959
toml_writer = { version = "1.0.6", path = "../toml_writer", default-features = false, features = ["alloc"], optional = true }
6060
serde_spanned = { version = "1.0.4", path = "../serde_spanned", default-features = false, features = ["alloc"] }
6161
foldhash = { version = "0.2.0", default-features = false, optional = true }

crates/toml_datetime/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.0.0] - 2026-02-11
11+
1012
### Fixes
1113

1214
- Wrap `Time::second` and `Time::nanosecond` in `Option`, preserving whether they are present or not
@@ -117,7 +119,8 @@ MSRV is now 1.64.0
117119
## [0.5.0] - 2022-10-21
118120

119121
<!-- next-url -->
120-
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.5...HEAD
122+
[Unreleased]: https://github.com/toml-rs/toml/compare/toml_datetime-v1.0.0...HEAD
123+
[1.0.0]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.5...toml_datetime-v1.0.0
121124
[0.7.5]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.4...toml_datetime-v0.7.5
122125
[0.7.4]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.3...toml_datetime-v0.7.4
123126
[0.7.3]: https://github.com/toml-rs/toml/compare/toml_datetime-v0.7.2...toml_datetime-v0.7.3

crates/toml_datetime/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_datetime"
3-
version = "0.7.5+spec-1.1.0"
3+
version = "1.0.0+spec-1.1.0"
44
description = "A TOML-compatible datetime type"
55
categories = ["encoding", "parser-implementations", "parsing", "config"]
66
keywords = ["encoding", "toml", "no_std"]

crates/toml_edit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ unbounded = []
4242
indexmap = { version = "2.11.4", features = ["std"] }
4343
winnow = { version = "0.7.13", optional = true }
4444
serde_core = { version = "1.0.225", optional = true }
45-
toml_datetime = { version = "0.7.5", path = "../toml_datetime" }
45+
toml_datetime = { version = "1.0.0", path = "../toml_datetime" }
4646
serde_spanned = { version = "1.0.4", path = "../serde_spanned", features = ["serde"], optional = true }
4747
toml_writer = { version = "1.0.6", path = "../toml_writer", optional = true }
4848
toml_parser = { version = "1.0.7", path = "../toml_parser", optional = true }

0 commit comments

Comments
 (0)