Skip to content

Commit

Permalink
Bump to version 7.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EricSalemi authored Nov 4, 2020
1 parent 6a56cc2 commit 912d149
Show file tree
Hide file tree
Showing 19 changed files with 21 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ buildscript {
configurations.all {
resolutionStrategy {
dependencySubstitution {
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.0')
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.1')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sourceSets.main {
}

dependencies {
compile 'com.guardsquare:proguard-core:7.0.0'
compile "com.guardsquare:proguard-core:${proguardCoreVersion}"
compile "com.google.code.gson:gson:${gsonVersion}"
}

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

allprojects {
group = 'com.guardsquare'
version = '7.0.0'
version = proguardVersion
}

wrapper {
Expand Down
2 changes: 1 addition & 1 deletion docs/md/manual/gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ line to your **`build.gradle`** file:
jcenter()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
4 changes: 2 additions & 2 deletions docs/md/manual/gradleplugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ project you can enable ProGuard instead of the default R8 compiler:
configurations.all {
resolutionStrategy {
dependencySubstitution {
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.0')
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.1')
}
}
}
Expand Down Expand Up @@ -58,7 +58,7 @@ project as follows:
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/android-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
//classpath ':proguard:' // For the local copy of the ProGuard plugin.
classpath 'com.guardsquare:proguard-gradle:7.0.0' // For the copy from Jcenter.
classpath 'com.guardsquare:proguard-gradle:7.0.1' // For the copy from Jcenter.
classpath 'com.android.tools.build:gradle:3.3.0'
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {
// Override the default version of ProGuard
// with the most recent one.
dependencySubstitution {
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.0')
substitute module('net.sf.proguard:proguard-gradle') with module('com.guardsquare:proguard-gradle:7.0.1')
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/android.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/applets.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/applications.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/midlets.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/proguard.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/proguardgui.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/retrace.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/scala.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle/servlets.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.0.0'
classpath 'com.guardsquare:proguard-gradle:7.0.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/gradlekotlindsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
// TODO: required due to https://github.com/Guardsquare/proguard/issues/30
classpath("com.android.tools.build:gradle:3.0.0")

classpath("com.guardsquare:proguard-gradle:7.0.0")
classpath("com.guardsquare:proguard-gradle:7.0.1")
}
}

Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
proguardVersion = 7.0.1
proguardCoreVersion = 7.0.1
gsonVersion = 2.8.5
kotlinVersion = 1.3.31
kotlinxMetadataVersion = 0.1.0
Expand Down

0 comments on commit 912d149

Please sign in to comment.