diff --git a/CHANGELOG.md b/CHANGELOG.md index c23c958..6e8d72a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +3.0.0 (9 August 2021) +--------- +* **BREAKING** Port plugin from Kotlin to Java for better Gradle compatibility; public extension API changed. (#379) +* Add support for AGP 7.0.0 +* Preliminary support for AGP 7.1.0 alphas + 3.0.0-RC02 (30 July 2021) --------- * Fix support for AGP 4.2.0 and below (#400) diff --git a/README.md b/README.md index 7a574e6..f0f9e8d 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-RC02`. +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`. Snapshot builds are available from the Sonatype Snapshot Repository at `https://oss.sonatype.org/content/repositories/snapshots`. @@ -26,4 +26,4 @@ Dexcount requires Java 8 or higher, Gradle 6.0 or higher, and Android Gradle Plu The Java code from the `com.android.dexdeps` package is sourced from the [Android source tree](https://android.googlesource.com/platform/dalvik.git/+/master/tools/dexdeps/). Inspired by Mihail Parparita's [`dex-method-counts`](https://github.com/mihaip/dex-method-counts) project, to whom much credit is due. -Copyright 2015-2020 Keepsafe Software, Inc +Copyright 2015-2021 Keepsafe Software, Inc diff --git a/docs/index.md b/docs/index.md index 1bbdc0d..bdffc03 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-RC02' + classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0' } } @@ -114,7 +114,7 @@ buildscript { } dependencies { - classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0-SNAPSHOT' + classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.1-SNAPSHOT' } } ``` diff --git a/gradle.properties b/gradle.properties index 64f42af..2233674 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.getkeepsafe.dexcount -VERSION_NAME=3.0.0-SNAPSHOT +VERSION_NAME=3.0.0 POM_ARTIFACT_ID=dexcount-gradle-plugin POM_NAME=Dexcount Gradle Plugin diff --git a/mkdocs.yml b/mkdocs.yml index 0f9c8aa..0922220 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -5,7 +5,7 @@ site_url: https://keepsafe.github.io/dexcount-gradle-plugin site_description: A Gradle plugin to report the number of method references in your APK on every build. site_author: Benjamin Bader -copyright: "Copyright © 2014-2020 KeepSafe Software, Inc" +copyright: "Copyright © 2014-2021 KeepSafe Software, Inc" theme: name: material