From 8b571bd19af7e86b3f784f6f0c463fd5a8ee0d39 Mon Sep 17 00:00:00 2001 From: Brian Park Date: Fri, 12 Jan 2024 13:23:05 -0800 Subject: [PATCH] Bump version to 2.3.1 --- CHANGELOG.md | 1 + README.md | 2 +- USER_GUIDE.md | 2 +- library.properties | 2 +- src/AceTime.h | 4 ++-- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d0a73128..9aec8725b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # Changelog * Unreleased +* 2.3.1 (2024-01-12, TZDB version 2023d) * Upgrade TZDB to 2023d * https://mm.icann.org/pipermail/tz-announce/2023-December/000080.html * "Ittoqqortoormiit, Greenland changes time zones on 2024-03-31. Vostok, diff --git a/README.md b/README.md index dcd4d5584..caa5f5b19 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ and the `zonedbc` database to support all timezones, for all transitions defined in the IANA TZ database (`[1844,2087]`), and extending the validity of timezone calculations from `[2000,10000)` to `[0001,10000)`. -**Version**: 2.3.0 (2023-06-27, TZDB version 2023c) +**Version**: 2.3.1 (2024-01-12, TZDB version 2023d) **Changelog**: [CHANGELOG.md](CHANGELOG.md) diff --git a/USER_GUIDE.md b/USER_GUIDE.md index 1be28c5d7..9b6de91a9 100644 --- a/USER_GUIDE.md +++ b/USER_GUIDE.md @@ -18,7 +18,7 @@ The IANA TZ database is programmatically generated into 3 predefined databases: databases have different accuracy ranges, and are designed to work with different `ZoneProcessor` and `ZoneManager` classes. -**Version**: 2.3.0 (2023-06-27, TZDB 2023c) +**Version**: 2.3.1 (2024-01-12, TZDB 2023d) **Related Documents**: diff --git a/library.properties b/library.properties index 5c5c62e1e..6a71176a4 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=AceTime -version=2.3.0 +version=2.3.1 author=Brian T. Park maintainer=Brian T. Park sentence=Date, time, timezone classes for Arduino supporting the full IANA TZ Database to convert epoch seconds to date and time components in different time zones. diff --git a/src/AceTime.h b/src/AceTime.h index 43667278c..fa2a18333 100644 --- a/src/AceTime.h +++ b/src/AceTime.h @@ -69,7 +69,7 @@ #include "zonedbc/zone_registry.h" // Version format: xxyyzz == "xx.yy.zz" -#define ACE_TIME_VERSION 20300 -#define ACE_TIME_VERSION_STRING "2.3.0" +#define ACE_TIME_VERSION 20301 +#define ACE_TIME_VERSION_STRING "2.3.1" #endif