Skip to content

Commit

Permalink
Prepare for release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Michał Sikora committed Jun 13, 2023
1 parent 9d62f81 commit 9dddf90
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}
dependencies {
implementation "io.mehow.laboratory:laboratory:1.0.3"
implementation "io.mehow.laboratory:laboratory:1.1.0"
}
```

Expand Down
5 changes: 4 additions & 1 deletion library/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions library/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,20 +94,20 @@ repositories {
}
dependencies {
implementation "io.mehow.laboratory:laboratory:1.0.3"
implementation "io.mehow.laboratory:laboratory:1.1.0"
}
```

Snapshots of the development version are available on [Sonatype's snapshots repository](https://oss.sonatype.org/content/repositories/snapshots/io/mehow/laboratory/).

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

Expand Down
2 changes: 1 addition & 1 deletion library/gradle.properties
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit 9dddf90

Please sign in to comment.