From 9dddf90ab7842964e4cca98d112f2a56e1dc5ba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Sikora?= Date: Tue, 13 Jun 2023 23:13:03 +0200 Subject: [PATCH] Prepare for release 1.1.0 --- README.md | 2 +- library/docs/changelog.md | 5 ++++- library/docs/index.md | 14 +++++++------- library/gradle.properties | 2 +- 4 files changed, 13 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 79cb4613..8598de03 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ repositories { } dependencies { - implementation "io.mehow.laboratory:laboratory:1.0.3" + implementation "io.mehow.laboratory:laboratory:1.1.0" } ``` diff --git a/library/docs/changelog.md b/library/docs/changelog.md index 52f4a78e..007b217a 100644 --- a/library/docs/changelog.md +++ b/library/docs/changelog.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.0] - 2023-06-13 + ### Changed - Upgrade Kotlin to `1.8.21`. - Upgrade Wire to `4.7.0`. @@ -461,7 +463,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release. -[Unreleased]: https://github.com/MiSikora/laboratory/compare/1.0.3...HEAD +[Unreleased]: https://github.com/MiSikora/laboratory/compare/1.1.0...HEAD +[1.1.0]: https://github.com/MiSikora/laboratory/releases/tag/1.1.0 [1.0.3]: https://github.com/MiSikora/laboratory/releases/tag/1.0.3 [1.0.2]: https://github.com/MiSikora/laboratory/releases/tag/1.0.2 [1.0.1]: https://github.com/MiSikora/laboratory/releases/tag/1.0.1 diff --git a/library/docs/index.md b/library/docs/index.md index 910c213b..f3971c99 100644 --- a/library/docs/index.md +++ b/library/docs/index.md @@ -94,7 +94,7 @@ repositories { } dependencies { - implementation "io.mehow.laboratory:laboratory:1.0.3" + implementation "io.mehow.laboratory:laboratory:1.1.0" } ``` @@ -102,12 +102,12 @@ 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.laboratory:laboratory:1.0.3`**: Core of the library. Defines classes and interfaces that you can interact with from your application code. It also provides R8 rules. -- **`io.mehow.laboratory:laboratory-shared-preferences:1.0.3`**: Provides implementation of `FeatureStorage` based on [`SharedPreferences`](https://developer.android.com/reference/android/content/SharedPreferences). -- **`io.mehow.laboratory:laboratory-data-store:1.0.3`**: Provides implementation of `FeatureStorage` based on [Jetpack `DataStore`](https://developer.android.com/topic/libraries/architecture/datastore). -- **`io.mehow.laboratory:laboratory-inspector:1.0.3`**: QA module that allows users to preview all features and change them at runtime from one place. -- **`io.mehow.laboratory:laboratory-hyperion-plugin:1.0.3`**: QA module that integrates `laboratory-inspector` with [Hyperion](https://github.com/willowtreeapps/Hyperion-Android). -- **`io.mehow.laboratory:laboratory-gradle-plugin:1.0.3`**: Gradle plugin for feature flags generation and other quality of life improvements. It is highly recommended to use it instead of manual class management. +- **`io.mehow.laboratory:laboratory:1.1.0`**: Core of the library. Defines classes and interfaces that you can interact with from your application code. It also provides R8 rules. +- **`io.mehow.laboratory:laboratory-shared-preferences:1.1.0`**: Provides implementation of `FeatureStorage` based on [`SharedPreferences`](https://developer.android.com/reference/android/content/SharedPreferences). +- **`io.mehow.laboratory:laboratory-data-store:1.1.0`**: Provides implementation of `FeatureStorage` based on [Jetpack `DataStore`](https://developer.android.com/topic/libraries/architecture/datastore). +- **`io.mehow.laboratory:laboratory-inspector:1.1.0`**: QA module that allows users to preview all features and change them at runtime from one place. +- **`io.mehow.laboratory:laboratory-hyperion-plugin:1.1.0`**: QA module that integrates `laboratory-inspector` with [Hyperion](https://github.com/willowtreeapps/Hyperion-Android). +- **`io.mehow.laboratory:laboratory-gradle-plugin:1.1.0`**: Gradle plugin for feature flags generation and other quality of life improvements. It is highly recommended to use it instead of manual class management. ## License diff --git a/library/gradle.properties b/library/gradle.properties index 44dc6bf3..82746e8a 100644 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.mehow.laboratory -VERSION_NAME=1.0.4-SNAPSHOT +VERSION_NAME=1.1.0 POM_DESCRIPTION=Library for feature flags management.