Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
MenoData committed Sep 25, 2017
1 parent 2937483 commit 491e57f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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'
}
```

Expand Down
2 changes: 1 addition & 1 deletion time4j-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 491e57f

Please sign in to comment.