From 22ae5793231c5e3df80d9a856da4668915db4bf4 Mon Sep 17 00:00:00 2001 From: Jacob Pratt Date: Fri, 5 May 2023 20:29:01 -0400 Subject: [PATCH] v0.3.21 release --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 4 ++-- time-core/Cargo.toml | 2 +- time-macros/Cargo.toml | 2 +- time/Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de00e012d..6be41ae08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog]. This project adheres to [Semantic Ver --- +## 0.3.21 [2023-05-05] + +### Added + +- Any formattable/parsable type can now be used with the `time::serde::format_description!` macro. +- `Weekday::nth_next` + +### Changed + +- The minimum supported Rust version is now 1.65.0. + ## 0.3.20 [2023-02-24] ### Changed diff --git a/Cargo.toml b/Cargo.toml index af12a0593..7fe52a5a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,8 +8,8 @@ members = [ resolver = "2" [workspace.dependencies] -time-core = { path = "time-core", version = "=0.1.0" } -time-macros = { path = "time-macros", version = "=0.2.8" } +time-core = { path = "time-core", version = "=0.1.1" } +time-macros = { path = "time-macros", version = "=0.2.9" } criterion = { version = "0.4.0", default-features = false } itoa = "1.0.1" diff --git a/time-core/Cargo.toml b/time-core/Cargo.toml index 57ab3b9fd..30ba6f847 100644 --- a/time-core/Cargo.toml +++ b/time-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "time-core" -version = "0.1.0" +version = "0.1.1" authors = ["Jacob Pratt ", "Time contributors"] edition = "2021" rust-version = "1.65.0" diff --git a/time-macros/Cargo.toml b/time-macros/Cargo.toml index c2cd9ded4..f8f50ba59 100644 --- a/time-macros/Cargo.toml +++ b/time-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "time-macros" -version = "0.2.8" +version = "0.2.9" authors = ["Jacob Pratt ", "Time contributors"] edition = "2021" rust-version = "1.65.0" diff --git a/time/Cargo.toml b/time/Cargo.toml index 65b5cb15f..fe4a76e9b 100644 --- a/time/Cargo.toml +++ b/time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "time" -version = "0.3.20" +version = "0.3.21" authors = ["Jacob Pratt ", "Time contributors"] edition = "2021" rust-version = "1.65.0"