From ce3c9e9cf2187443921cb1b1a74389b7399d4114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sikora?= Date: Sun, 27 Jun 2021 11:29:17 +0200 Subject: [PATCH] Prepare for release 2.0.2 --- README.md | 2 +- docs/changelog.md | 5 ++++- docs/index.md | 8 ++++---- gradle.properties | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a86d1f16..9367bff6 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ repositories { } dependencies { - implementation "io.mehow.ruler:ruler:2.0.1" + implementation "io.mehow.ruler:ruler:2.0.2" } ``` diff --git a/docs/changelog.md b/docs/changelog.md index afb6013b..eef116a0 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] +## [2.0.2] - 2021-06-27 + ### Changed - Upgrade to Kotlin `1.5.20`. @@ -177,7 +179,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/MiSikora/ruler/compare/2.0.1...HEAD +[Unreleased]: https://github.com/MiSikora/ruler/compare/2.0.2...HEAD +[2.0.2]: https://github.com/MiSikora/ruler/releases/tag/2.0.2 [2.0.1]: https://github.com/MiSikora/ruler/releases/tag/2.0.1 [2.0.0]: https://github.com/MiSikora/ruler/releases/tag/2.0.0 [1.0.0]: https://github.com/MiSikora/ruler/releases/tag/1.0.0 diff --git a/docs/index.md b/docs/index.md index f09b7560..37e2e1cb 100644 --- a/docs/index.md +++ b/docs/index.md @@ -65,7 +65,7 @@ repositories { } dependencies { - implementation "io.mehow.ruler:ruler:2.0.1" + implementation "io.mehow.ruler:ruler:2.0.2" } ``` @@ -73,9 +73,9 @@ Snapshots of the development version are available on [Sonatype's snapshots repo Here is the list of all available artifacts that Ruler library provides. -- **`io.mehow.ruler:ruler:2.0.1`**: Core of the library. Defines classes and interfaces that represent distances and gives capabilities to format the for a user in a human-readable way. -- **`io.mehow.ruler:ruler-android:2.0.1`**: Provides formatting behaviour that can be installed at runtime in the core library. -- **`io.mehow.ruler:ruler-android-startup:2.0.1`**: Uses [Jetpack Startup](https://developer.android.com/topic/libraries/app-startup) library to initialize Ruler with Android context formatting. +- **`io.mehow.ruler:ruler:2.0.2`**: Core of the library. Defines classes and interfaces that represent distances and gives capabilities to format the for a user in a human-readable way. +- **`io.mehow.ruler:ruler-android:2.0.2`**: Provides formatting behaviour that can be installed at runtime in the core library. +- **`io.mehow.ruler:ruler-android-startup:2.0.2`**: Uses [Jetpack Startup](https://developer.android.com/topic/libraries/app-startup) library to initialize Ruler with Android context formatting. ## Attribution diff --git a/gradle.properties b/gradle.properties index 9e7d5f97..20be82d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.mehow.ruler -VERSION_NAME=2.0.2-SNAPSHOT +VERSION_NAME=2.0.2 POM_DESCRIPTION=Library for distance measurments.