Skip to content

Commit b3deed8

Browse files
Update versions for version 7.6 (#440)
1 parent 8903bfb commit b3deed8

File tree

8 files changed

+18
-9
lines changed

8 files changed

+18
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ buildscript {
109109
mavenCentral()
110110
}
111111
dependencies {
112-
classpath 'com.guardsquare:proguard-gradle:7.5.0'
112+
classpath 'com.guardsquare:proguard-gradle:7.6.0'
113113
}
114114
}
115115
```

base/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jar {
4949
// Early access automatic downloads are not yet supported:
5050
// https://github.com/gradle/gradle/issues/14814
5151
// But it will work if e.g. Java N-ea is pre-installed
52-
def javaVersionsForTest = 9..22
52+
def javaVersionsForTest = 9..23
5353

5454
test {
5555
useJUnitPlatform()
@@ -64,7 +64,7 @@ task testAllJavaVersions() { testAllTask ->
6464
ignoreFailures = true
6565

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

6969
testAllTask.dependsOn(it)
7070

docs/md/manual/releasenotes.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
## Version 7.5.1
1+
## Version 7.6
2+
3+
### Java support
4+
5+
- Add support for Java 23. (#387)
6+
7+
### Improved
8+
9+
- Improve obfuscation dictionary name performance with large dictionaries. (#413)
210

311
### Bugfixes
412

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

716
## Version 7.5.0
817

examples/application-kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.guardsquare:proguard-gradle:7.5.0'
10+
classpath 'com.guardsquare:proguard-gradle:7.6.0'
1111
}
1212
}
1313

examples/application/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.guardsquare:proguard-gradle:7.5.0'
10+
classpath 'com.guardsquare:proguard-gradle:7.6.0'
1111
}
1212
}
1313

examples/gradle-kotlin-dsl/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
google()
66
}
77
dependencies {
8-
classpath("com.guardsquare:proguard-gradle:7.5.0")
8+
classpath("com.guardsquare:proguard-gradle:7.6.0")
99
}
1010
}
1111

examples/spring-boot/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.guardsquare:proguard-gradle:7.5.0'
10+
classpath 'com.guardsquare:proguard-gradle:7.6.0'
1111
}
1212
}
1313

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
proguardVersion = 7.5.1
1+
proguardVersion = 7.6
22

33
# The version of ProGuardCORE that sub-projects are built with
44
proguardCoreVersion = 9.1.6

0 commit comments

Comments
 (0)