Skip to content

Commit 869ce15

Browse files
Update dependency, update samples, update release notes for 7.8
1 parent 124b33e commit 869ce15

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ buildscript {
108108
mavenCentral()
109109
}
110110
dependencies {
111-
classpath 'com.guardsquare:proguard-gradle:7.7.0'
111+
classpath 'com.guardsquare:proguard-gradle:7.8.0'
112112
}
113113
}
114114
```

docs/md/manual/home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Welcome to the manual for **ProGuard** version 7.7.0 ([what's new?](releasenotes.md)).
1+
Welcome to the manual for **ProGuard** version 7.8.0 ([what's new?](releasenotes.md)).
22

33
ProGuard is an open-sourced Java class file shrinker, optimizer, obfuscator, and
44
preverifier. As a result, ProGuard processed applications and libraries are smaller and faster.

docs/md/manual/releasenotes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
## Version 7.7.1
1+
## Version 7.8
22

33
### Kotlin support
44

55
- Add support for Kotlin 2.2.
66

7+
### Java support
8+
9+
- Add support for Java 25. (#481)
10+
711
## Version 7.7
812

913
### Java support

examples/application-kotlin/build.gradle

Lines changed: 4 additions & 8 deletions
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.7.0'
10+
classpath 'com.guardsquare:proguard-gradle:7.8.0'
1111
}
1212
}
1313

@@ -31,16 +31,12 @@ test {
3131
useJUnitPlatform()
3232
}
3333

34-
compileKotlin {
35-
kotlinOptions.jvmTarget = '1.8'
36-
}
37-
38-
compileTestKotlin {
39-
kotlinOptions.jvmTarget = '1.8'
34+
kotlin {
35+
jvmToolchain(8)
4036
}
4137

4238
application {
43-
mainClass = 'AppKt'
39+
mainClass.set('com.example.AppKt')
4440
}
4541

4642
ext.baseCoordinates = "${project.name}-${project.version}"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

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.7.0'
10+
classpath 'com.guardsquare:proguard-gradle:7.8.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.7.0")
8+
classpath("com.guardsquare:proguard-gradle:7.8.0")
99
}
1010
}
1111

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

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.7.0'
10+
classpath 'com.guardsquare:proguard-gradle:7.8.0'
1111
}
1212
}
1313

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ proguardVersion = 7.8.0
33
# The version of ProGuardCORE that sub-projects are built with
44
proguardCoreVersion = 9.2.0
55
gsonVersion = 2.11.0
6-
kotlinVersion = 2.1.0
6+
kotlinVersion = 2.2.0
77
target = 1.8
88

99
# Optionally compile the WTK plugin.

0 commit comments

Comments
 (0)