Skip to content

Commit

Permalink
Release version 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-bader committed Jan 16, 2023
1 parent fbfbdee commit efb8b23
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Unreleased
4.0.0 (16 January 2023)
---------
* **BREAKING** Raise minimum JDK version to 11 (#462)
* Add support for AGP 8.0.0 alphas - and drop support for AGP versions below 7.0.0 (#491)
* Add support for AGP 7.4.0 (#492)
* Add support for AGP 7.3.0 (#475)
* Add support for AGP 7.2.0 (#444)
* Remove (broken) color console output (#432)

3.1.0 (25 January 2022)
---------
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ 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.1.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:4.0.0`.

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

Dexcount requires Java 8 or higher, Gradle 6.0 or higher, and Android Gradle Plugin 3.4.0 or higher.
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.)

## Credits

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-2022 Keepsafe Software, Inc
Copyright 2015-2023 Keepsafe Software, Inc
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,10 @@ tasks.withType(Groovydoc).configureEach {
exclude "**/*Spec.java"
}

signing {
useGpgCmd()
}

// Plugin Portal publishing

gradlePlugin {
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ buildscript {
}
dependencies {
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.1.0'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.0.0'
}
}
Expand Down Expand Up @@ -114,7 +114,7 @@ buildscript {
}
dependencies {
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:3.1.1-SNAPSHOT'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:4.0.1-SNAPSHOT'
}
}
```
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.getkeepsafe.dexcount
VERSION_NAME=4.0.0-SNAPSHOT
VERSION_NAME=4.0.0

POM_ARTIFACT_ID=dexcount-gradle-plugin
POM_NAME=Dexcount Gradle Plugin
Expand Down

0 comments on commit efb8b23

Please sign in to comment.