Skip to content

Commit

Permalink
Update versions for version 7.6 (#440)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjameshamilton authored Sep 27, 2024
1 parent 8903bfb commit b3deed8
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.5.0'
classpath 'com.guardsquare:proguard-gradle:7.6.0'
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jar {
// Early access automatic downloads are not yet supported:
// https://github.com/gradle/gradle/issues/14814
// But it will work if e.g. Java N-ea is pre-installed
def javaVersionsForTest = 9..22
def javaVersionsForTest = 9..23

test {
useJUnitPlatform()
Expand All @@ -64,7 +64,7 @@ task testAllJavaVersions() { testAllTask ->
ignoreFailures = true

// The version of bytebuddy used by mockk only supports Java 22 experimentally so far
if (version >= 22) systemProperty 'net.bytebuddy.experimental', true
// if (version >= 22) systemProperty 'net.bytebuddy.experimental', true

testAllTask.dependsOn(it)

Expand Down
11 changes: 10 additions & 1 deletion docs/md/manual/releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
## Version 7.5.1
## Version 7.6

### Java support

- Add support for Java 23. (#387)

### Improved

- Improve obfuscation dictionary name performance with large dictionaries. (#413)

### Bugfixes

- Prevent unknown enum value for `KmVersionRequirementVersionKind` exception when processing code compiled with an outdated Kotlin version.
- ReTrace: Fix separation of multiple frames with a newline. (#432)

## Version 7.5.0

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

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

Expand Down
2 changes: 1 addition & 1 deletion examples/gradle-kotlin-dsl/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
google()
}
dependencies {
classpath("com.guardsquare:proguard-gradle:7.5.0")
classpath("com.guardsquare:proguard-gradle:7.6.0")
}
}

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

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
proguardVersion = 7.5.1
proguardVersion = 7.6

# The version of ProGuardCORE that sub-projects are built with
proguardCoreVersion = 9.1.6
Expand Down

0 comments on commit b3deed8

Please sign in to comment.