diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e8d72a..b58661f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +3.0.1 (20 September 2021) +--------- +* Fix plugin compatibility with Gradle 6.1.1 (#411) + 3.0.0 (9 August 2021) --------- * **BREAKING** Port plugin from Kotlin to Java for better Gradle compatibility; public extension API changed. (#379) diff --git a/README.md b/README.md index f0f9e8d..30a54f7 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ For more information, please see [the website](https://keepsafe.github.io/dexcou ## Download -The plugin is available from the Gradle Plugin Portal under the ID `com.getkeepsafe.dexcount`, and from Maven Central under the coordinates `com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0`. +The plugin is available from the Gradle Plugin Portal under the ID `com.getkeepsafe.dexcount`, and from Maven Central under the coordinates `com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.1`. Snapshot builds are available from the Sonatype Snapshot Repository at `https://oss.sonatype.org/content/repositories/snapshots`. diff --git a/docs/index.md b/docs/index.md index bdffc03..dff0168 100644 --- a/docs/index.md +++ b/docs/index.md @@ -29,7 +29,7 @@ buildscript { } dependencies { - classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0' + classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.1' } } @@ -114,7 +114,7 @@ buildscript { } dependencies { - classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.1-SNAPSHOT' + classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.2-SNAPSHOT' } } ``` diff --git a/gradle.properties b/gradle.properties index 1b71969..3aa00f4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.getkeepsafe.dexcount -VERSION_NAME=3.0.1-SNAPSHOT +VERSION_NAME=3.0.1 POM_ARTIFACT_ID=dexcount-gradle-plugin POM_NAME=Dexcount Gradle Plugin