diff --git a/CHANGELOG.md b/CHANGELOG.md index 7be2a6b2..5e0545bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## Version 1.15.0 + +_2021-02-26_ + +* Breaking change: `activity.showKeyboard()` and `Activity.hideKeyboard(focusedView: View)` have been replaced with `Window.showSoftKeyboard()` and `Window.hideSoftKeyboard()` using the `WindowInsetsControllerCompat` APIs. +* Replace deprecated `systemUiVisibility` with `WindowInsetsControllerCompat`. +* Enable IR compiler. +* Kotlin 1.4.31. +* Coroutines 1.4.2. +* Update AndroidX and MDC. + ## Version 1.14.1 _2020-09-14_ diff --git a/README.md b/README.md index e6baa0d4..acb96a60 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Dependencies are hosted on [Maven Central][maven-central]. Latest stable version: ```groovy -def blueprint_version = "1.14.1" +def blueprint_version = "1.15.0" ``` If you use **Kotlin Coroutines and Flow**: diff --git a/gradle.properties b/gradle.properties index be9f3f21..7f13a9c2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.reactivecircus.blueprint -VERSION_NAME=1.15.0-SNAPSHOT +VERSION_NAME=1.15.0 POM_URL=https://github.com/reactivecircus/blueprint POM_SCM_URL=https://github.com/reactivecircus/blueprint