From 39f05c0b5c69a8b289c282040a49cf17e1ce3636 Mon Sep 17 00:00:00 2001 From: Meno Hochschild Date: Sun, 30 Dec 2018 10:18:46 +0100 Subject: [PATCH] version update --- CHANGELOG.md | 6 +++++- README.md | 2 +- time4j-android/build.gradle | 2 +- .../main/java/net/time4j/android/ApplicationStarter.java | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fdfcc98..b0050a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -## [v4.3-2018?] not yet released +## [v4.3-2019?] not yet released + +## [v4.2-2018h] published on 2018-12-30 +### Changed +- Update TZDB to version 2018h [#852] ## [v4.2-2018g] published on 2018-12-21 ### Added diff --git a/README.md b/README.md index 6b4cffe..5e11430 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Only two steps are required before coding against the API of Time4A. ```groovy dependencies { - implementation group: 'net.time4j', name: 'time4j-android', version: '4.2-2018g' + implementation group: 'net.time4j', name: 'time4j-android', version: '4.2-2018h' } ``` diff --git a/time4j-android/build.gradle b/time4j-android/build.gradle index 1a229cf..d58a7ab 100644 --- a/time4j-android/build.gradle +++ b/time4j-android/build.gradle @@ -13,7 +13,7 @@ ext { siteUrl = 'https://github.com/menodata/Time4A' gitUrl = 'https://github.com/menodata/Time4A.git' - libraryVersion = '4.2-2018g' + libraryVersion = '4.2-2018h' developerId = 'mhochschild' developerName = 'Meno Hochschild' diff --git a/time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java b/time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java index 2b557f6..f27268b 100644 --- a/time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java +++ b/time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java @@ -58,10 +58,10 @@ public class ApplicationStarter { //~ Statische Felder/Initialisierungen -------------------------------- - private static final String VERSION = "v4.2-2018g"; + private static final String VERSION = "v4.2-2018h"; private static final int RELEASE_YEAR = 2018; private static final int RELEASE_MONTH = 12; - private static final int RELEASE_DAY = 21; + private static final int RELEASE_DAY = 30; private static final String TIME4A = "TIME4A"; private static final AtomicBoolean PREPARED = new AtomicBoolean(false);