Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.guardsquare:proguard-gradle:7.8.2'
classpath 'com.guardsquare:proguard-gradle:7.9.0'
}
}
```
Expand Down
4 changes: 2 additions & 2 deletions docs/md/manual/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ Yes, you can. **ProGuard** itself is distributed under the GPL, but this
doesn't affect the programs that you process. Your code remains yours, and its
license can remain the same.

## Does ProGuard work with Java 2, 5,..., 25? {: #jdk1.4}
## Does ProGuard work with Java 2, 5,..., 26? {: #jdk1.4}

Yes, **ProGuard** supports all JDKs from 1.1 up to and including 25. Java 2
Yes, **ProGuard** supports all JDKs from 1.1 up to and including 26. Java 2
introduced some small differences in the class file format. Java 5 added
attributes for generics and for annotations. Java 6 introduced optional
preverification attributes. Java 7 made preverification obligatory and
Expand Down
2 changes: 1 addition & 1 deletion docs/md/manual/home.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Welcome to the manual for **ProGuard** version 7.8.2 ([what's new?](releasenotes.md)).
Welcome to the manual for **ProGuard** version 7.9.0 ([what's new?](releasenotes.md)).

ProGuard is an open-sourced Java class file shrinker, optimizer, obfuscator, and
preverifier. As a result, ProGuard processed applications and libraries are smaller and faster.
Expand Down
4 changes: 4 additions & 0 deletions docs/md/manual/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- Add support for Kotlin 2.3.

### Java support

- Add support for Java 26.

## Version 7.8.2

### Bugfixes
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.8.2'
classpath 'com.guardsquare:proguard-gradle:7.9.0'
}
}

Expand Down
4 changes: 2 additions & 2 deletions 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.8.2'
classpath 'com.guardsquare:proguard-gradle:7.9.0'
}
}

Expand Down Expand Up @@ -35,7 +35,7 @@ ext.baseCoordinates = "${project.name}-${project.version}"

java {
toolchain {
languageVersion = JavaLanguageVersion.of(22)
languageVersion = JavaLanguageVersion.of(8)
}
}

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.8.2'
classpath 'com.guardsquare:proguard-gradle:7.9.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ kotest = "6.1.4"
kotlin = "2.2.0"
log4j = "2.25.3"
mockk = "1.13.13"
proguardCore = "9.3.1"
proguardCore = "9.3.2"
kotlin-compile-testing = "0.8.0"

[libraries]
Expand Down
Loading