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"