diff --git a/CHANGELOG.md b/CHANGELOG.md index 05e6065d..f21313c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 0.10.0 + +This is the final release of the plugin that's compatible with **Android Gradle Plugin 4.2**. + +When AGP **7.0.0-beta01** was released, we thought all the APIs we use are stable and can therefore support **4.2.1** which have the same APIs we were using. +Unfortunately **AGP 7.0.0-beta04** moved `ApplicationAndroidComponentsExtension` to a new package and deprecated the old one. In order to move to the new `ApplicationAndroidComponentsExtension` +before our 1.0 release and avoid the overhead of publishing multiple artifacts, we decided to start requiring **AGP 7.0.0-beta04** in the next release. + +### Changed +- Compile with AGP 7.1.0-rc01. +- Compile with Kotlin 1.5.21. + ## 0.9.1 ### Changed diff --git a/README.md b/README.md index c6631a63..163a46dd 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ All versions of **AGP 7.x** are supported. Version `0.4.0` of the plugin is the final version that's compatible with AGP **4.0** and **4.1**. +Version `0.10.0` of the plugin is the final version that's compatible with AGP **4.2**. + ## Installation The **Android App Versioning Gradle Plugin** is available from both [Maven Central](https://search.maven.org/artifact/io.github.reactivecircus.appversioning/app-versioning-gradle-plugin) and [Gradle Plugin Portal](https://plugins.gradle.org/plugin/io.github.reactivecircus.app-versioning). Make sure your top-level `build.gradle` has **either** `mavenCentral()` or `gradlePluginPortal()` defined in the `buildscript` block: diff --git a/gradle.properties b/gradle.properties index 1711a343..38857c04 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=io.github.reactivecircus.appversioning -VERSION_NAME=1.0.0-SNAPSHOT +VERSION_NAME=0.10.0 POM_ARTIFACT_ID=app-versioning-gradle-plugin POM_NAME=Android App Versioning Gradle Plugin