Skip to content

Commit 7fc907d

Browse files
robinlefevertvoc-gs
authored andcommitted
Update ProGuardCORE version to support Kotlin 2.2
1 parent b10346b commit 7fc907d

8 files changed

Lines changed: 14 additions & 8 deletions

File tree

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.7.1'
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 ([what's new?](releasenotes.md)).
1+
Welcome to the manual for **ProGuard** version 7.7.1 ([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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Version 7.7.1
2+
3+
### Kotlin support
4+
5+
- Add support for Kotlin 2.2.
6+
17
## Version 7.7
28

39
### Java support

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

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
proguardVersion = 7.7.0
1+
proguardVersion = 7.7.1
22

33
# The version of ProGuardCORE that sub-projects are built with
4-
proguardCoreVersion = 9.1.10
4+
proguardCoreVersion = 9.1.11
55
gsonVersion = 2.11.0
66
kotlinVersion = 2.1.0
77
target = 1.8

0 commit comments

Comments
 (0)