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
}

examples/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
resolutionStrategy {
1111
// Override the default version of ProGuard
1212
// with the most recent one.
13-
force 'net.sf.proguard:proguard-gradle:6.2.1'
13+
force 'net.sf.proguard:proguard-gradle:6.2.2'
1414
}
1515
}
1616
}

gradle/pom.xml

Lines changed: 13 additions & 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-gradle</artifactId>
@@ -76,61 +76,73 @@
7676
<groupId>com.android.tools.build</groupId>
7777
<artifactId>gradle</artifactId>
7878
<version>3.0.0</version>
79+
<scope>provided</scope>
7980
</dependency>
8081
<dependency>
8182
<groupId>org.gradle</groupId>
8283
<artifactId>gradle-base-services</artifactId>
8384
<version>6.0.1</version>
85+
<scope>provided</scope>
8486
</dependency>
8587
<dependency>
8688
<groupId>org.gradle</groupId>
8789
<artifactId>gradle-base-services-groovy</artifactId>
8890
<version>6.0.1</version>
91+
<scope>provided</scope>
8992
</dependency>
9093
<dependency>
9194
<groupId>org.gradle</groupId>
9295
<artifactId>gradle-core</artifactId>
9396
<version>6.0.1</version>
97+
<scope>provided</scope>
9498
</dependency>
9599
<dependency>
96100
<groupId>org.gradle</groupId>
97101
<artifactId>gradle-core-api</artifactId>
98102
<version>6.0.1</version>
103+
<scope>provided</scope>
99104
</dependency>
100105
<dependency>
101106
<groupId>org.gradle</groupId>
102107
<artifactId>gradle-language-java</artifactId>
103108
<version>6.0.1</version>
109+
<scope>provided</scope>
104110
</dependency>
105111
<dependency>
106112
<groupId>org.gradle</groupId>
107113
<artifactId>gradle-logging</artifactId>
108114
<version>6.0.1</version>
115+
<scope>provided</scope>
109116
</dependency>
110117
<dependency>
111118
<groupId>org.gradle</groupId>
112119
<artifactId>gradle-model-core</artifactId>
113120
<version>6.0.1</version>
121+
<scope>provided</scope>
114122
</dependency>
115123
<dependency>
116124
<groupId>org.gradle</groupId>
117125
<artifactId>gradle-process-services</artifactId>
118126
<version>6.0.1</version>
127+
<scope>provided</scope>
119128
</dependency>
120129
<dependency>
121130
<groupId>org.gradle</groupId>
122131
<artifactId>gradle-workers</artifactId>
123132
<version>6.0.1</version>
133+
<scope>provided</scope>
124134
</dependency>
125135
<dependency>
126136
<groupId>org.codehaus.groovy</groupId>
127137
<artifactId>groovy-all</artifactId>
128138
<version>2.4.7</version>
139+
<scope>provided</scope>
129140
</dependency>
130141
<dependency>
131142
<groupId>org.slf4j</groupId>
132143
<artifactId>slf4j-api</artifactId>
133144
<version>1.7.25</version>
145+
<scope>provided</scope>
134146
</dependency>
135147
</dependencies>
136148
<repositories>

gui/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-gui</artifactId>

gui/src/proguard/gui/GUIResources.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ preverification = Preverification
2525
#
2626
# Panel titles.
2727
#
28-
welcome = Welcome to ProGuard, version 6.2.1
28+
welcome = Welcome to ProGuard, version 6.2.2
2929
options = Options
3030
keepAdditional = Keep additional classes and class members
3131
keepNamesAdditional = Keep additional class names and class member names

retrace/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-retrace</artifactId>

wtk/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-wtk-plugin</artifactId>

0 commit comments

Comments
 (0)