From e46738db1bf37ea3efa855f24eeb5d35fffe3b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Mon, 16 Sep 2024 01:31:44 +0200 Subject: [PATCH] Enable full no-std use --- CHANGELOG.md | 4 ++++ examples/current-time/Cargo.toml | 2 +- tzdb/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c862468..770508d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ ## Changes between the versions +### 0.7.2 (2024-09-16) + +* Enable full no-std use + ### 0.7.1 (2024-09-15) * Add missing Changelog for doc creation diff --git a/examples/current-time/Cargo.toml b/examples/current-time/Cargo.toml index dc592b3..b3299d1 100644 --- a/examples/current-time/Cargo.toml +++ b/examples/current-time/Cargo.toml @@ -8,4 +8,4 @@ license = "MIT OR Apache-2.0" publish = false [dependencies] -tzdb = { path = "../../tzdb", version = "0.7.1" } +tzdb = { path = "../../tzdb", version = "0.7.2" } diff --git a/tzdb/Cargo.toml b/tzdb/Cargo.toml index 8b04ff9..a85201a 100644 --- a/tzdb/Cargo.toml +++ b/tzdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tzdb" -version = "0.7.1" +version = "0.7.2" edition = "2021" authors = ["René Kijewski "] repository = "https://github.com/Kijewski/tzdb"