From 491e57ff6db75ec63bd2bbe066e651e1d5746e41 Mon Sep 17 00:00:00 2001 From: Meno Hochschild Date: Mon, 25 Sep 2017 23:53:12 +0200 Subject: [PATCH] version update --- README.md | 8 ++++---- time4j-android/build.gradle | 2 +- .../main/java/net/time4j/android/ApplicationStarter.java | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0df42f5..7857ee4 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,9 @@ at [IANA](http://www.iana.org/time-zones). On the other side: If you really want data in parallel. Time4A gives you the freedom which timezone data to use. ## Any disadvantages? -Yes, Time4A is rather big in terms of method count and size (although still much smaller than ICU4J). However, you can -apply Proguard to strongly shrink the size. And future versions of Time4A might be modularized allowing you to only -install the parts you needed. +Yes, Time4A is rather big in terms of method count and size due to a lot of features (although still much smaller than ICU4J). +However, you can apply Proguard to strongly shrink the size. And future versions of Time4A might be modularized allowing you +to only install the parts you needed. ## Usage Only two steps are required before coding against the API of Time4A. @@ -38,7 +38,7 @@ Only two steps are required before coding against the API of Time4A. ```groovy dependencies { - compile group: 'net.time4j', name: 'time4j-android', version: '3.34-2017b' + compile group: 'net.time4j', name: 'time4j-android', version: '3.35-2017b' } ``` diff --git a/time4j-android/build.gradle b/time4j-android/build.gradle index 9ca9a3e..6465ca0 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 = '3.34-2017b' + libraryVersion = '3.35-2017b' 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 bb2d413..acd7727 100644 --- a/time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java +++ b/time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java @@ -60,10 +60,10 @@ public class ApplicationStarter { //~ Statische Felder/Initialisierungen -------------------------------- - private static final String VERSION = "v3.34-2017b"; + private static final String VERSION = "v3.35-2017b"; private static final int RELEASE_YEAR = 2017; private static final int RELEASE_MONTH = 9; - private static final int RELEASE_DAY = 10; + private static final int RELEASE_DAY = 25; private static final String TIME4A = "time4a"; private static final AtomicBoolean PREPARED = new AtomicBoolean(false);