Skip to content
This repository has been archived by the owner on Jul 8, 2022. It is now read-only.

Commit

Permalink
Changelog for 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
soywiz committed Sep 20, 2019
1 parent e150dab commit 2c783eb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Changelog

## [1.7.0](https://github.com/korlibs/klock/compare/1.5.0...master)
## [1.7.1](https://github.com/korlibs/klock/compare/1.7.0...1.7.1)

* Supports TimeZone parsing. Fixes [#14](https://github.com/korlibs/klock/pull/14)
* Added SerializableDateTime wrapping a DateTime to allow serialization along DateTimeTz. Fixes [#17](https://github.com/korlibs/klock/pull/17)
* New PatternDateFormat parsing system. Fixes [#33](https://github.com/korlibs/klock/pull/33)
* Fixes a NumberFormatException. Fixes [#37](https://github.com/korlibs/klock/pull/37)
* Verifies that #38 is fixed. Fixes [#38](https://github.com/korlibs/klock/pull/38)
* klock-locale now includes ExtendedTimezoneNames with TimeZone names for parsing. Fixes [#41](https://github.com/korlibs/klock/pull/41)
* Now publishing to NPM: <https://www.npmjs.com/package/@korlibs/klock> Fixes [#54](https://github.com/korlibs/klock/pull/54)
* Fixes a bug when generating a span from a DateTimeRange. Fixes [#63](https://github.com/korlibs/klock/pull/63)

## [1.7.0](https://github.com/korlibs/klock/compare/1.5.0...1.7.0)

* Kotlin 1.3.50
* Added Date and Time classes
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ val daysInNextMonth = (now.yearMonth + 1.months).days
Starting with Klock 1.4.0, the library is available at jcenter.

```groovy
def klockVersion = "1.6.0"
def klockVersion = "1.7.1"
repositories {
jcenter()
Expand All @@ -55,7 +55,7 @@ enableFeaturePreview('GRADLE_METADATA')
### Use with Kotlin-JVM

```groovy
def klockVersion = "1.4.0"
def klockVersion = "1.7.1"
repositories {
jcenter()
Expand All @@ -70,6 +70,7 @@ dependencies {

| Klock | Kotlin | Gradle Metadata |
|--------|--------|------------------|
| 1.7.0 | 1.3.50 | 1.0 |
| 1.6.0 | 1.3.50 | 1.0 |
| 1.5.0 | 1.3.40 | 1.0 |
| 1.4.0 | 1.3.21 | 1.0 |
Expand Down

0 comments on commit 2c783eb

Please sign in to comment.