Skip to content

Commit ebe9000

Browse files
author
ProGuard
committed
Created ProGuard version 6.2.2.
1 parent 3fd802b commit ebe9000

File tree

16 files changed

+30
-16
lines changed

16 files changed

+30
-16
lines changed

annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>net.sf.proguard</groupId>
1010
<artifactId>proguard-parent</artifactId>
11-
<version>6.2.1</version>
11+
<version>6.2.2</version>
1212
<relativePath>../buildscripts/pom.xml</relativePath>
1313
</parent>
1414
<artifactId>proguard-annotations</artifactId>

ant/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>net.sf.proguard</groupId>
1010
<artifactId>proguard-parent</artifactId>
11-
<version>6.2.1</version>
11+
<version>6.2.2</version>
1212
<relativePath>../buildscripts/pom.xml</relativePath>
1313
</parent>
1414
<artifactId>proguard-anttask</artifactId>

buildscripts/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>net.sf.proguard</groupId>
99
<artifactId>proguard-parent</artifactId>
10-
<version>6.2.1</version>
10+
<version>6.2.2</version>
1111
<packaging>pom</packaging>
1212
<name>[${project.groupId}] ${project.artifactId}</name>
1313
<description>ProGuard is a free Java class file shrinker, optimizer, obfuscator, and preverifier.</description>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>net.sf.proguard</groupId>
1010
<artifactId>proguard-parent</artifactId>
11-
<version>6.2.1</version>
11+
<version>6.2.2</version>
1212
<relativePath>../buildscripts/pom.xml</relativePath>
1313
</parent>
1414
<artifactId>proguard-base</artifactId>

core/src/META-INF/MANIFEST.MF

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
Manifest-Version: 1.0
22
Main-Class: proguard.ProGuard
3+
Class-Path: gson-2.8.5.jar

core/src/proguard/ProGuard.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
*/
4545
public class ProGuard
4646
{
47-
public static final String VERSION = "ProGuard, version 6.2.1";
47+
public static final String VERSION = "ProGuard, version 6.2.2";
4848

4949
private final Configuration configuration;
5050
private ClassPool programClassPool = new ClassPool();

docs/downloads.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,14 @@ don't be afraid to update.
2525

2626
| | | |
2727
|--------|----------|----------|----------------------------------
28+
| 6.2.2 | | GRADLE | Fixed missing runtime dependencies.
2829
| 6.2.1 | PGD-12 | GRADLE | Fixed build of Gradle plugin.
2930
| 6.2.1 | DGD-827 | CORE | Fixed retracing of obfuscated class / method names in some cases.
3031
| 6.2.1 | PGD-15 | CORE | Fixed potential `ClassFormatError` due to corrupt LineNumberTables when processing class files generated by groovy 2.5.5+.
31-
| 6.2.1 | DGD-1503 | CORE | Added default filter to prevent processing of versioned class files.
32+
| 6.2.1 | DGD-1503 | CORE | Added default filter to prevent processing of versioned class files.
3233
| 6.2.1 | DGD-1364 | DOCS | Documented the mapping file format.
3334
| 6.2.1 | DGD-950 | CORE | Fixed potential `EmptyStackException` when generating mapping files with inlined methods in rare cases.
34-
| 6.2.1 | PGD-10 | CORE | Fixed potential `VerifyError` when optimizing classes with class version `11+` due to nest based access.
35+
| 6.2.1 | PGD-10 | CORE | Fixed potential `VerifyError` when optimizing classes with class version `11+` due to nest based access.
3536
| 6.2.1 | PGD-11 | CORE | Fixed gradle example for processing libraries.
3637
| 6.2.1 | PGD-8 | CORE | Fixed potential `IllegalArgumentException` with message `Value "x" is not a reference value` when optimizing code with conditional casts.
3738
| 6.2.1 | DGD-1424 | CORE | Fixed incomplete fix in case of inlining method with type annotations.

docs/manual/gradle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ line to your **`build.gradle`** file:
1010
jcenter()
1111
}
1212
dependencies {
13-
classpath 'net.sf.proguard:proguard-gradle:6.2.1'
13+
classpath 'net.sf.proguard:proguard-gradle:6.2.2'
1414
}
1515
}
1616

docs/manual/gradleplugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ project as follows:
3939
}
4040
dependencies {
4141
classpath 'com.android.tools.build:gradle:3.3.0'
42-
classpath 'net.sf.proguard:proguard-gradle:6.2.1'
42+
classpath 'net.sf.proguard:proguard-gradle:6.2.2'
4343
}
4444
}
4545

examples/android-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
dependencies {
1111
//classpath ':proguard:' // For the local copy of the ProGuard plugin.
12-
classpath 'net.sf.proguard:proguard-gradle:6.2.1' // For the copy from Jcenter.
12+
classpath 'net.sf.proguard:proguard-gradle:6.2.2' // For the copy from Jcenter.
1313
classpath 'com.android.tools.build:gradle:3.3.0'
1414
}
1515
}

0 commit comments

Comments
 (0)