diff --git a/CHANGELOG.md b/CHANGELOG.md index 17bd40bac..021a7982b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.7.0] - 2020-10-21 ### Changed - Change log format follows now [Keep a Changelog](https://keepachangelog.com/) format. Format is applied retroactively to this file. - R8 rules are now a part of `META-INF` of `laboratory` artifact. diff --git a/README.md b/README.md index 0e5a4c176..ffe8e02ca 100644 --- a/README.md +++ b/README.md @@ -38,13 +38,13 @@ By default, if a feature is not set, the first enum value that has has `isDefaul | Artifact | Description | | ----------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------- | -| `io.mehow.laboratory:laboratory:0.6.2` | Core of the library. Defines classes and interfaces that you should interact with. It also provides a `Laboratory.inMemory()` method for tests. | -| `io.mehow.laboratory:laboratory-shared-preferences:0.6.2` | Provides implementation of `FeatureStorage` based on `SharedPreferences` and adds R8 rules for features. | -| `io.mehow.laboratory:laboratory-data-store:0.6.2` | Provides implementation of `FeatureStorage` based on Jetpack `DataStore` and adds R8 rules for features. | -| `io.mehow.laboratory:laboratory-inspector:0.6.2` | QA module that allows to preview all features and change them at runtime from one place. | -| `io.mehow.laboratory:laboratory-hyperion-plugin:0.6.2` | QA module that integrates `laboratory-inspector` with the [Hyperion](https://github.com/willowtreeapps/Hyperion-Android). | -| `io.mehow.laboratory:laboratory-gradle-plugin:0.6.2` | Gradle plugin for feature management. It is highly recommended to be used when `laboratory-inspector` is availalbe in the application. | -| `io.mehow.laboratory:laboratory-generator:0.6.2` | Generates feature flags and feature flag factory classes. | +| `io.mehow.laboratory:laboratory:0.7.0` | Core of the library. Defines classes and interfaces that you should interact with. It also provides a `Laboratory.inMemory()` method for tests. | +| `io.mehow.laboratory:laboratory-shared-preferences:0.7.0` | Provides implementation of `FeatureStorage` based on `SharedPreferences` and adds R8 rules for features. | +| `io.mehow.laboratory:laboratory-data-store:0.7.0` | Provides implementation of `FeatureStorage` based on Jetpack `DataStore` and adds R8 rules for features. | +| `io.mehow.laboratory:laboratory-inspector:0.7.0` | QA module that allows to preview all features and change them at runtime from one place. | +| `io.mehow.laboratory:laboratory-hyperion-plugin:0.7.0` | QA module that integrates `laboratory-inspector` with the [Hyperion](https://github.com/willowtreeapps/Hyperion-Android). | +| `io.mehow.laboratory:laboratory-gradle-plugin:0.7.0` | Gradle plugin for feature management. It is highly recommended to be used when `laboratory-inspector` is availalbe in the application. | +| `io.mehow.laboratory:laboratory-generator:0.7.0` | Generates feature flags and feature flag factory classes. | ## QA support diff --git a/library/gradle.properties b/library/gradle.properties index 7b1e9aa69..a253b6e95 100644 --- a/library/gradle.properties +++ b/library/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.mehow.laboratory -VERSION_NAME=0.6.3-SNAPSHOT +VERSION_NAME=0.7.0 POM_DESCRIPTION=Library for feature flags management.