From 5d53b781a30db2f6e808c93f4e7083d2d709ebd0 Mon Sep 17 00:00:00 2001 From: Meno Hochschild Date: Sat, 25 May 2019 08:31:13 +0200 Subject: [PATCH] version update --- CHANGELOG.md | 4 +++- README.md | 4 ++-- time4j-android/build.gradle | 2 +- .../main/java/net/time4j/android/ApplicationStarter.java | 6 +++--- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 432c82c..7047dc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ -## [v4.4-2019?] not yet released +## [v4.5-2019?] not yet released + +## [v4.4-2019a] published on 2019-05-25 ### Added - Anomalistic month (apogee/perigee of moon) [#859] - Support for Windows zones [#756] diff --git a/README.md b/README.md index df5cb3e..f41ef01 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ resources by defining your own assets using the same resource paths. While libraries like ThreetenABP or Joda-Time-Android care about holding the latest timezone data independent from the Android platform they fail to hold their own i18n-resources. But real-world mobile devices using the Android platform often use very different text resources and data for world languages, dependent on how up-to-date -the Android OS-version is. Time4A closes this big gap **supporting actually 92 languages** and has more features +the Android OS-version is. Time4A closes this big gap **supporting actually 94 languages** and has more features than any other date and time library available for the Android platform. Of course, Time4A also supports the **newest timezone data** available at [IANA](http://www.iana.org/time-zones). On the other side: If you really want you can even use the platform timezone data in parallel. Time4A gives you the freedom which timezone data to use. @@ -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.3-2019a' + implementation group: 'net.time4j', name: 'time4j-android', version: '4.4-2019a' } ``` diff --git a/time4j-android/build.gradle b/time4j-android/build.gradle index f30d6d1..48cea03 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.3-2019a' + libraryVersion = '4.4-2019a' 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 5cd6224..bc594af 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.3-2019a"; + private static final String VERSION = "v4.4-2019a"; private static final int RELEASE_YEAR = 2019; - private static final int RELEASE_MONTH = 4; - private static final int RELEASE_DAY = 19; + private static final int RELEASE_MONTH = 5; + private static final int RELEASE_DAY = 25; private static final String TIME4A = "TIME4A"; private static final AtomicBoolean PREPARED = new AtomicBoolean(false);