From ca4345bdeaa093046f8d85300aa939b58aae6975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Kijewski?= Date: Wed, 2 Mar 2022 22:46:15 +0100 Subject: [PATCH] Add changelog --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- tzdb/Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9b6496f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +**0.1.2** + +* Include “backzone” data to include pre-1970 information for some more time zones + +**0.1.1** + +* Make UtcDateTime/DateTime serializable with serde using serde_with + +**0.1.0** + +* Initial release diff --git a/Cargo.lock b/Cargo.lock index b187b3e..5908317 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -391,7 +391,7 @@ checksum = "326e255e65b84326e3840ec4b648e6a481907340300a2f6c931e6fb14c60fc75" [[package]] name = "tzdb" -version = "0.1.1" +version = "0.1.2" dependencies = [ "byte-slice-cast", "document-features", diff --git a/tzdb/Cargo.toml b/tzdb/Cargo.toml index c1fc324..bf21bf2 100644 --- a/tzdb/Cargo.toml +++ b/tzdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tzdb" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = ["René Kijewski "] repository = "https://github.com/Kijewski/tzdb"