Skip to content

Commit e7d1054

Browse files
Release version 3.0.0
1 parent d734d73 commit e7d1054

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
3.0.0 (9 August 2021)
2+
---------
3+
* **BREAKING** Port plugin from Kotlin to Java for better Gradle compatibility; public extension API changed. (#379)
4+
* Add support for AGP 7.0.0
5+
* Preliminary support for AGP 7.1.0 alphas
6+
17
3.0.0-RC02 (30 July 2021)
28
---------
39
* Fix support for AGP 4.2.0 and below (#400)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For more information, please see [the website](https://keepsafe.github.io/dexcou
1515

1616
## Download
1717

18-
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`.
18+
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`.
1919

2020
Snapshot builds are available from the Sonatype Snapshot Repository at `https://oss.sonatype.org/content/repositories/snapshots`.
2121

@@ -26,4 +26,4 @@ Dexcount requires Java 8 or higher, Gradle 6.0 or higher, and Android Gradle Plu
2626
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/).
2727
Inspired by Mihail Parparita's [`dex-method-counts`](https://github.com/mihaip/dex-method-counts) project, to whom much credit is due.
2828

29-
Copyright 2015-2020 Keepsafe Software, Inc
29+
Copyright 2015-2021 Keepsafe Software, Inc

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ buildscript {
2929
}
3030
3131
dependencies {
32-
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0-RC02'
32+
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0'
3333
}
3434
}
3535
@@ -114,7 +114,7 @@ buildscript {
114114
}
115115
116116
dependencies {
117-
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.0-SNAPSHOT'
117+
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.0.1-SNAPSHOT'
118118
}
119119
}
120120
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.getkeepsafe.dexcount
2-
VERSION_NAME=3.0.0-SNAPSHOT
2+
VERSION_NAME=3.0.0
33

44
POM_ARTIFACT_ID=dexcount-gradle-plugin
55
POM_NAME=Dexcount Gradle Plugin

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ site_url: https://keepsafe.github.io/dexcount-gradle-plugin
55
site_description: A Gradle plugin to report the number of method references in your APK on every build.
66
site_author: Benjamin Bader
77

8-
copyright: "Copyright © 2014-2020 KeepSafe Software, Inc"
8+
copyright: "Copyright © 2014-2021 KeepSafe Software, Inc"
99

1010
theme:
1111
name: material

0 commit comments

Comments
 (0)