Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
MenoData committed Apr 24, 2020
1 parent deefcac commit 39f0a7f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## [v4.5-2020a] not yet released
## [v4.6-2020?] not yet released

## [v4.5-2020a] published on 2020-04-25
### Added
- Support for Duration.in(Collection<? extends Unit>) [#899]
- Support for Swiss German (Schwyzerdütsch) [#895]
Expand All @@ -14,7 +16,7 @@
- Make PatternType.CLDR_DATE being applicable on PlainDate [#889]

### Fixed
- Crash during app initialization (rare case) [#894]
- Crash during app initialization (race condition) [#894]
- Incorrect sign in last term of calculation of mean lunar anomaly [#891]

## [v4.4.4-2019c] published on 2020-01-15
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.5-2019c'
implementation group: 'net.time4j', name: 'time4j-android', version: '4.5-2020a'
}
```

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.4.5-2019c'
libraryVersion = '4.5-2020a'

developerId = 'mhochschild'
developerName = 'Meno Hochschild'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ public class ApplicationStarter {

//~ Statische Felder/Initialisierungen --------------------------------

private static final String VERSION = "v4.4.5-2019c";
private static final String VERSION = "v4.5-2020a";
private static final int RELEASE_YEAR = 2020;
private static final int RELEASE_MONTH = 4;
private static final int RELEASE_DAY = 20;
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 39f0a7f

Please sign in to comment.