Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
MenoData committed May 25, 2019
1 parent 2dce53b commit 5d53b78
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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'
}
```

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 = '4.3-2019a'
libraryVersion = '4.4-2019a'

developerId = 'mhochschild'
developerName = 'Meno Hochschild'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5d53b78

Please sign in to comment.