Skip to content

Commit

Permalink
Add official 4.2.0 support (#371)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-bader authored May 10, 2021
1 parent 3482bc9 commit de957a8
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ repositories {
google()
}

def agpVersion = "4.2.0-beta02"
def agpVersion = "4.2.0"
dependencies {
implementation platform("org.jetbrains.kotlin:kotlin-bom")
implementation "com.google.code.gson:gson:2.8.6"
Expand Down
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=2.0.1-SNAPSHOT
VERSION_NAME=2.1.0-SNAPSHOT

POM_ARTIFACT_ID=dexcount-gradle-plugin
POM_NAME=Dexcount Gradle Plugin
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-rc-1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"4.2.0-beta02" | "6.7.1" || 7422 | 926 | 2677
"4.2.0" | "6.8.1" || 7422 | 926 | 2677
"4.1.0" | "6.7.1" || 7356 | 926 | 2597
"4.1.0" | "6.5.1" || 7356 | 926 | 2597
"3.6.0" | "6.5.1" || 7370 | 926 | 3780
Expand Down Expand Up @@ -63,7 +63,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"4.2.0-beta02" | "6.7.1" || 7 | 6 | 3
"4.2.0" | "6.8.1" || 7 | 6 | 3
"4.1.0" | "6.7.1" || 7 | 6 | 3
"4.1.0" | "6.5.1" || 7 | 6 | 3
"3.6.0" | "6.5.1" || 7 | 6 | 7
Expand Down Expand Up @@ -95,7 +95,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"4.2.0-beta02" | "6.7.1" || 4266 | 723 | 1268
"4.2.0" | "6.8.1" || 4266 | 723 | 1268
"4.1.0" | "6.7.1" || 4266 | 723 | 1268
"4.1.0" | "6.5.1" || 4266 | 723 | 1268
"3.6.0" | "6.5.1" || 4265 | 723 | 1271
Expand Down Expand Up @@ -127,7 +127,7 @@ class IntegrationSpec extends Specification {

where:
agpVersion | gradleVersion || numMethods | numClasses | numFields
"4.2.0-beta02" | "6.7.1" || 7422 | 926 | 2677
"4.2.0" | "6.8.1" || 7422 | 926 | 2677
"4.1.0" | "6.7.1" || 7356 | 926 | 2597
"4.1.0" | "6.5.1" || 7356 | 926 | 2597
}
Expand Down

0 comments on commit de957a8

Please sign in to comment.