Skip to content

Commit 912d149

Browse files
authored
Bump to version 7.0.1
1 parent 6a56cc2 commit 912d149

19 files changed

+21
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ buildscript {
9595
configurations.all {
9696
resolutionStrategy {
9797
dependencySubstitution {
98-
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.0')
98+
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.1')
9999
}
100100
}
101101
}

base/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ sourceSets.main {
2828
}
2929

3030
dependencies {
31-
compile 'com.guardsquare:proguard-core:7.0.0'
31+
compile "com.guardsquare:proguard-core:${proguardCoreVersion}"
3232
compile "com.google.code.gson:gson:${gsonVersion}"
3333
}
3434

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group = 'com.guardsquare'
10-
version = '7.0.0'
10+
version = proguardVersion
1111
}
1212

1313
wrapper {

docs/md/manual/gradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ line to your **`build.gradle`** file:
1010
jcenter()
1111
}
1212
dependencies {
13-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
13+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1414
}
1515
}
1616

docs/md/manual/gradleplugin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ project you can enable ProGuard instead of the default R8 compiler:
1414
configurations.all {
1515
resolutionStrategy {
1616
dependencySubstitution {
17-
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.0')
17+
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.1')
1818
}
1919
}
2020
}
@@ -58,7 +58,7 @@ project as follows:
5858
}
5959
dependencies {
6060
classpath 'com.android.tools.build:gradle:3.3.0'
61-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
61+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
6262
}
6363
}
6464

examples/android-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
dependencies {
1111
//classpath ':proguard:' // For the local copy of the ProGuard plugin.
12-
classpath 'com.guardsquare:proguard-gradle:7.0.0' // For the copy from Jcenter.
12+
classpath 'com.guardsquare:proguard-gradle:7.0.1' // For the copy from Jcenter.
1313
classpath 'com.android.tools.build:gradle:3.3.0'
1414
}
1515
}

examples/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111
// Override the default version of ProGuard
1212
// with the most recent one.
1313
dependencySubstitution {
14-
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.0')
14+
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.1')
1515
}
1616
}
1717
}

examples/gradle/android.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ buildscript {
2020
google()
2121
}
2222
dependencies {
23-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
23+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
2424
}
2525
}
2626

examples/gradle/applets.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
google()
1414
}
1515
dependencies {
16-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
16+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1717
}
1818
}
1919

examples/gradle/applications.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
google()
1414
}
1515
dependencies {
16-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
16+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1717
}
1818
}
1919

examples/gradle/library.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
google()
1515
}
1616
dependencies {
17-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
17+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1818
}
1919
}
2020

examples/gradle/midlets.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
google()
1414
}
1515
dependencies {
16-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
16+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1717
}
1818
}
1919

examples/gradle/proguard.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
google()
1515
}
1616
dependencies {
17-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
17+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1818
}
1919
}
2020

examples/gradle/proguardgui.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
google()
1515
}
1616
dependencies {
17-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
17+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1818
}
1919
}
2020

examples/gradle/retrace.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
google()
1515
}
1616
dependencies {
17-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
17+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1818
}
1919
}
2020

examples/gradle/scala.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ buildscript {
1414
google()
1515
}
1616
dependencies {
17-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
17+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1818
}
1919
}
2020

examples/gradle/servlets.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313
google()
1414
}
1515
dependencies {
16-
classpath 'com.guardsquare:proguard-gradle:7.0.0'
16+
classpath 'com.guardsquare:proguard-gradle:7.0.1'
1717
}
1818
}
1919

examples/gradlekotlindsl/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
// TODO: required due to https://github.com/Guardsquare/proguard/issues/30
88
classpath("com.android.tools.build:gradle:3.0.0")
99

10-
classpath("com.guardsquare:proguard-gradle:7.0.0")
10+
classpath("com.guardsquare:proguard-gradle:7.0.1")
1111
}
1212
}
1313

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
proguardVersion = 7.0.1
2+
proguardCoreVersion = 7.0.1
13
gsonVersion = 2.8.5
24
kotlinVersion = 1.3.31
35
kotlinxMetadataVersion = 0.1.0

0 commit comments

Comments
 (0)