Skip to content

Commit a81bbcc

Browse files
author
Adrián García
committed
Prepare for new release
1 parent 6d6f7c2 commit a81bbcc

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
- No new features yet
9+
10+
## [1.2.0] - 2020-02-19
811
### Added
912
- Add `sharedActivityViewModel` to Kodein extensions to support shared Activity view models.
1013
### Fixed
1114
- Fix `ConcurrentModificationException`s in store subscriptions' iteration by adding safe iteration over them.
1215
### Changed
1316
- Rename `toggleAbility` to `toggleEnabled` as the name was confusing.
17+
- Upgraded project dependencies.
18+
19+
IMPORTANT: as a result of upgrading dependencies, you may need to target Java 8.
1420

1521
## [1.1.2] - 2020-02-07
1622
### Added
@@ -70,7 +76,8 @@ state (`success` or `failure`)
7076
### Added
7177
- Initial architecture release.
7278

73-
[Unreleased]: https://github.com/bq/mini-kotlin/compare/1.1.2...HEAD
79+
[Unreleased]: https://github.com/bq/mini-kotlin/compare/1.2.0...HEAD
80+
[1.2.0]: https://github.com/bq/mini-kotlin/compare/1.1.2...1.2.0
7481
[1.1.2]: https://github.com/bq/mini-kotlin/compare/1.1.1...1.1.2
7582
[1.1.1]: https://github.com/bq/mini-kotlin/compare/1.1.0...1.1.1
7683
[1.1.0]: https://github.com/bq/mini-kotlin/compare/1.0.9...1.1.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Add the following dependencies to your app's `build.gradle`:
184184

185185
```groovy
186186
dependencies {
187-
def mini_version = "1.1.2"
187+
def mini_version = "1.2.0"
188188
// Minimum working dependencies
189189
implementation "com.github.bq.mini-kotlin:mini-android:$mini_version"
190190
kapt "com.github.bq.mini-kotlin:mini-processor:$mini_version"
@@ -202,7 +202,7 @@ dependencies {
202202
}
203203
```
204204

205-
### [Android] Setting up your App file
205+
### \[Android] Setting up your App file
206206

207207
You'll need to add the following snippet to your `Application`'s `onCreate` method. If you don't have it, then create it and reference it in your `AndroidManifest.xml` file:
208208

0 commit comments

Comments
 (0)