Skip to content

Commit

Permalink
Created ProGuard version 6.2.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
ProGuard committed Dec 8, 2019
1 parent 3fd802b commit ebe9000
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 16 deletions.
2 changes: 1 addition & 1 deletion annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-anttask</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<packaging>pom</packaging>
<name>[${project.groupId}] ${project.artifactId}</name>
<description>ProGuard is a free Java class file shrinker, optimizer, obfuscator, and preverifier.</description>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-base</artifactId>
Expand Down
1 change: 1 addition & 0 deletions core/src/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Manifest-Version: 1.0
Main-Class: proguard.ProGuard
Class-Path: gson-2.8.5.jar
2 changes: 1 addition & 1 deletion core/src/proguard/ProGuard.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/
public class ProGuard
{
public static final String VERSION = "ProGuard, version 6.2.1";
public static final String VERSION = "ProGuard, version 6.2.2";

private final Configuration configuration;
private ClassPool programClassPool = new ClassPool();
Expand Down
5 changes: 3 additions & 2 deletions docs/downloads.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,14 @@ don't be afraid to update.

| | | |
|--------|----------|----------|----------------------------------
| 6.2.2 | | GRADLE | Fixed missing runtime dependencies.
| 6.2.1 | PGD-12 | GRADLE | Fixed build of Gradle plugin.
| 6.2.1 | DGD-827 | CORE | Fixed retracing of obfuscated class / method names in some cases.
| 6.2.1 | PGD-15 | CORE | Fixed potential `ClassFormatError` due to corrupt LineNumberTables when processing class files generated by groovy 2.5.5+.
| 6.2.1 | DGD-1503 | CORE | Added default filter to prevent processing of versioned class files.
| 6.2.1 | DGD-1503 | CORE | Added default filter to prevent processing of versioned class files.
| 6.2.1 | DGD-1364 | DOCS | Documented the mapping file format.
| 6.2.1 | DGD-950 | CORE | Fixed potential `EmptyStackException` when generating mapping files with inlined methods in rare cases.
| 6.2.1 | PGD-10 | CORE | Fixed potential `VerifyError` when optimizing classes with class version `11+` due to nest based access.
| 6.2.1 | PGD-10 | CORE | Fixed potential `VerifyError` when optimizing classes with class version `11+` due to nest based access.
| 6.2.1 | PGD-11 | CORE | Fixed gradle example for processing libraries.
| 6.2.1 | PGD-8 | CORE | Fixed potential `IllegalArgumentException` with message `Value "x" is not a reference value` when optimizing code with conditional casts.
| 6.2.1 | DGD-1424 | CORE | Fixed incomplete fix in case of inlining method with type annotations.
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/gradle.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ line to your **`build.gradle`** file:
jcenter()
}
dependencies {
classpath 'net.sf.proguard:proguard-gradle:6.2.1'
classpath 'net.sf.proguard:proguard-gradle:6.2.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion docs/manual/gradleplugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ project as follows:
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'net.sf.proguard:proguard-gradle:6.2.1'
classpath 'net.sf.proguard:proguard-gradle:6.2.2'
}
}

Expand Down
2 changes: 1 addition & 1 deletion examples/android-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
dependencies {
//classpath ':proguard:' // For the local copy of the ProGuard plugin.
classpath 'net.sf.proguard:proguard-gradle:6.2.1' // For the copy from Jcenter.
classpath 'net.sf.proguard:proguard-gradle:6.2.2' // For the copy from Jcenter.
classpath 'com.android.tools.build:gradle:3.3.0'
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
resolutionStrategy {
// Override the default version of ProGuard
// with the most recent one.
force 'net.sf.proguard:proguard-gradle:6.2.1'
force 'net.sf.proguard:proguard-gradle:6.2.2'
}
}
}
Expand Down
14 changes: 13 additions & 1 deletion gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-gradle</artifactId>
Expand Down Expand Up @@ -76,61 +76,73 @@
<groupId>com.android.tools.build</groupId>
<artifactId>gradle</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-base-services</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-base-services-groovy</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-core</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-core-api</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-language-java</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-logging</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-model-core</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-process-services</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.gradle</groupId>
<artifactId>gradle-workers</artifactId>
<version>6.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<scope>provided</scope>
</dependency>
</dependencies>
<repositories>
Expand Down
2 changes: 1 addition & 1 deletion gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-gui</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gui/src/proguard/gui/GUIResources.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ preverification = Preverification
#
# Panel titles.
#
welcome = Welcome to ProGuard, version 6.2.1
welcome = Welcome to ProGuard, version 6.2.2
options = Options
keepAdditional = Keep additional classes and class members
keepNamesAdditional = Keep additional class names and class member names
Expand Down
2 changes: 1 addition & 1 deletion retrace/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-retrace</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion wtk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>net.sf.proguard</groupId>
<artifactId>proguard-parent</artifactId>
<version>6.2.1</version>
<version>6.2.2</version>
<relativePath>../buildscripts/pom.xml</relativePath>
</parent>
<artifactId>proguard-wtk-plugin</artifactId>
Expand Down

0 comments on commit ebe9000

Please sign in to comment.