Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
MenoData committed Jan 16, 2018
1 parent 85336b2 commit d511b66
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
## [v3.39-2018a] not yet released
## [v3.40-2018?] not yet released

## [v3.39-2018a] published on 2018-01-16
### Added
- Extra features for StdSolarCalculator.CC [#731]
- Search for moon phase at or after a moment [#730]

### Changed
- Update timezone-data to v2018a [#736]
- Allow negative DST-offsets [#735]

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Only two steps are required before coding against the API of Time4A.

```groovy
dependencies {
compile group: 'net.time4j', name: 'time4j-android', version: '3.38-2017c'
compile group: 'net.time4j', name: 'time4j-android', version: '3.39-2018a'
}
```

Expand Down
1 change: 1 addition & 0 deletions app/src/main/java/de/menodata/timedemoapp/TimeDemoApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ static String getTimeInfo(Context context) {
+ "\n"
+ "\n=> TZDB-version: " + Timezone.getVersion("TZDB")
+ "\n=> ZONE-PROVIDERS: " + Timezone.getProviderInfo()
+ "\n=> Europe/Dublin-DST: " + Timezone.of("Europe/Dublin").getDaylightSavingOffset(moment)
+ "\n=> sunrise (HH): " + hhSun.startLocal()
+ "\n=> sunset (HH): " + hhSun.endLocal()
+ "\n=> moonrise (HH): " + hhMoon.moonriseLocal()
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.38-2017c'
libraryVersion = '3.39-2018a'

developerId = 'mhochschild'
developerName = 'Meno Hochschild'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* -----------------------------------------------------------------------
* Copyright © 2013-2017 Meno Hochschild, <http://www.menodata.de/>
* Copyright © 2013-2018 Meno Hochschild, <http://www.menodata.de/>
* -----------------------------------------------------------------------
* This file (ApplicationStarter.java) is part of project Time4J.
*
Expand Down Expand Up @@ -60,10 +60,10 @@ public class ApplicationStarter {

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

private static final String VERSION = "v3.38-2017c";
private static final int RELEASE_YEAR = 2017;
private static final int RELEASE_MONTH = 12;
private static final int RELEASE_DAY = 18;
private static final String VERSION = "v3.39-2018a";
private static final int RELEASE_YEAR = 2018;
private static final int RELEASE_MONTH = 1;
private static final int RELEASE_DAY = 16;
private static final String TIME4A = "time4a";

private static final AtomicBoolean PREPARED = new AtomicBoolean(false);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* -----------------------------------------------------------------------
* Copyright © 2013-2017 Meno Hochschild, <http://www.menodata.de/>
* Copyright © 2013-2018 Meno Hochschild, <http://www.menodata.de/>
* -----------------------------------------------------------------------
* This file (AndroidResourceLoader.java) is part of project Time4J.
*
Expand Down

0 comments on commit d511b66

Please sign in to comment.