Skip to content

Commit 8fdba8e

Browse files
committed
version update
1 parent cb1a7b4 commit 8fdba8e

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
## [v4.6-2020?] not yet released
2+
3+
## [v4.5.1-2020a] published on 2020-05-19
24
### Fixed
35
- NPE in deserializing of SolarTime and LunarTime [#901]
46

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resources by defining your own assets using the same resource paths.
1616
While libraries like ThreetenABP or Joda-Time-Android care about holding the latest timezone data independent
1717
from the Android platform they fail to hold their own i18n-resources. But real-world mobile devices using the
1818
Android platform often use very different text resources and data for world languages, dependent on how up-to-date
19-
the Android OS-version is. Time4A closes this big gap **supporting actually 94 languages** and has more features
19+
the Android OS-version is. Time4A closes this big gap **supporting actually 95 languages** and has more features
2020
than any other date and time library available for the Android platform. Of course, Time4A also supports the
2121
**newest timezone data** available at [IANA](http://www.iana.org/time-zones). On the other side: If you really
2222
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.
3232

3333
```groovy
3434
dependencies {
35-
implementation group: 'net.time4j', name: 'time4j-android', version: '4.5-2020a'
35+
implementation group: 'net.time4j', name: 'time4j-android', version: '4.5.1-2020a'
3636
}
3737
```
3838

time4j-android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ext {
1313
siteUrl = 'https://github.com/menodata/Time4A'
1414
gitUrl = 'https://github.com/menodata/Time4A.git'
1515

16-
libraryVersion = '4.5-2020a'
16+
libraryVersion = '4.5.1-2020a'
1717

1818
developerId = 'mhochschild'
1919
developerName = 'Meno Hochschild'

time4j-android/src/main/java/net/time4j/android/ApplicationStarter.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public class ApplicationStarter {
6363

6464
//~ Statische Felder/Initialisierungen --------------------------------
6565

66-
private static final String VERSION = "v4.5-2020a";
66+
private static final String VERSION = "v4.5.1-2020a";
6767
private static final int RELEASE_YEAR = 2020;
68-
private static final int RELEASE_MONTH = 4;
69-
private static final int RELEASE_DAY = 25;
68+
private static final int RELEASE_MONTH = 5;
69+
private static final int RELEASE_DAY = 19;
7070
private static final String TIME4A = "TIME4A";
7171

7272
private static final AtomicBoolean PREPARED = new AtomicBoolean(false);

0 commit comments

Comments
 (0)