Skip to content

Commit efb8b23

Browse files
Release version 4.0.0
1 parent fbfbdee commit efb8b23

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1-
Unreleased
1+
4.0.0 (16 January 2023)
22
---------
33
* **BREAKING** Raise minimum JDK version to 11 (#462)
4+
* Add support for AGP 8.0.0 alphas - and drop support for AGP versions below 7.0.0 (#491)
5+
* Add support for AGP 7.4.0 (#492)
6+
* Add support for AGP 7.3.0 (#475)
7+
* Add support for AGP 7.2.0 (#444)
8+
* Remove (broken) color console output (#432)
49

510
3.1.0 (25 January 2022)
611
---------

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ 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.1.0`.
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:4.0.0`.
1919

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

22-
Dexcount requires Java 8 or higher, Gradle 6.0 or higher, and Android Gradle Plugin 3.4.0 or higher.
22+
Dexcount requires Java 11 or higher, Gradle 7.0 or higher, and Android Gradle Plugin 7.0.0 or higher. (_Building_ the plugin requires Java 17 or higher.)
2323

2424
## Credits
2525

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-2022 Keepsafe Software, Inc
29+
Copyright 2015-2023 Keepsafe Software, Inc

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,10 @@ tasks.withType(Groovydoc).configureEach {
258258
exclude "**/*Spec.java"
259259
}
260260

261+
signing {
262+
useGpgCmd()
263+
}
264+
261265
// Plugin Portal publishing
262266

263267
gradlePlugin {

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.1.0'
32+
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.0.0'
3333
}
3434
}
3535
@@ -114,7 +114,7 @@ buildscript {
114114
}
115115
116116
dependencies {
117-
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.1.1-SNAPSHOT'
117+
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.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=4.0.0-SNAPSHOT
2+
VERSION_NAME=4.0.0
33

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

0 commit comments

Comments
 (0)