Skip to content

Commit 22ae579

Browse files
committed
v0.3.21 release
1 parent 8757bef commit 22ae579

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver
66

77
---
88

9+
## 0.3.21 [2023-05-05]
10+
11+
### Added
12+
13+
- Any formattable/parsable type can now be used with the `time::serde::format_description!` macro.
14+
- `Weekday::nth_next`
15+
16+
### Changed
17+
18+
- The minimum supported Rust version is now 1.65.0.
19+
920
## 0.3.20 [2023-02-24]
1021

1122
### Changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ members = [
88
resolver = "2"
99

1010
[workspace.dependencies]
11-
time-core = { path = "time-core", version = "=0.1.0" }
12-
time-macros = { path = "time-macros", version = "=0.2.8" }
11+
time-core = { path = "time-core", version = "=0.1.1" }
12+
time-macros = { path = "time-macros", version = "=0.2.9" }
1313

1414
criterion = { version = "0.4.0", default-features = false }
1515
itoa = "1.0.1"

time-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time-core"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.65.0"

time-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time-macros"
3-
version = "0.2.8"
3+
version = "0.2.9"
44
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.65.0"

time/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time"
3-
version = "0.3.20"
3+
version = "0.3.21"
44
authors = ["Jacob Pratt <[email protected]>", "Time contributors"]
55
edition = "2021"
66
rust-version = "1.65.0"

0 commit comments

Comments
 (0)