diff --git a/README.md b/README.md index 8ee3c82a..153ea574 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ repositories { } dependencies { - implementation "io.mehow.ruler:ruler-android:0.5.3" + implementation "io.mehow.ruler:ruler-android:0.6.0" } ``` diff --git a/docs/changelog.md b/docs/changelog.md index 2c5020d3..d0635255 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0] - 2020-11-11 + ### Added - `meterRatio` property to `LengthUnit` interface. - `contains` function to to `LengthUnit` interface. This allows to use `in` sugar syntax. @@ -98,7 +100,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/MiSikora/Ruler/compare/0.5.3...HEAD +[Unreleased]: https://github.com/MiSikora/Ruler/compare/0.6.0...HEAD +[0.6.0]: https://github.com/MiSikora/Ruler/releases/tag/0.6.0 [0.5.3]: https://github.com/MiSikora/Ruler/releases/tag/0.5.3 [0.5.2]: https://github.com/MiSikora/Ruler/releases/tag/0.5.2 [0.5.1]: https://github.com/MiSikora/Ruler/releases/tag/0.5.1 diff --git a/docs/index.md b/docs/index.md index 04148378..d3900d1b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -75,7 +75,7 @@ repositories { } dependencies { - implementation "io.mehow.ruler:ruler:0.5.3" + implementation "io.mehow.ruler:ruler:0.6.0" } ``` @@ -83,8 +83,8 @@ Snapshots of the development version are available on [Sonatype's snapshots repo Here is the list of all available artifacts that Laboratory library provides. -- **`io.mehow.ruler:ruler:0.5.3`**: Core of the library. Defines classes and interfaces that represent distances. -- **`io.mehow.ruler:ruler-android:0.5.3`**: Provides distance formatters for Android platform that can present them to a user in a meaningful way. +- **`io.mehow.ruler:ruler:0.6.0`**: Core of the library. Defines classes and interfaces that represent distances. +- **`io.mehow.ruler:ruler-android:0.6.0`**: Provides distance formatters for Android platform that can present them to a user in a meaningful way. ## Attribution diff --git a/gradle.properties b/gradle.properties index ddae4d04..5f55cc56 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.mehow.ruler -VERSION_NAME=0.5.3-SNAPSHOT +VERSION_NAME=0.6.0 POM_DESCRIPTION=Library for distance measurments.