Browse Source

3.30.2-GA release

tags/rel_3_30_2_ga^0
chibash 4 months ago
parent
commit
9ad05535d3
5 changed files with 7 additions and 3 deletions
  1. 4
    0
      Changes.md
  2. 1
    1
      build.xml
  3. BIN
      javassist.jar
  4. 1
    1
      pom.xml
  5. 1
    1
      src/main/javassist/CtClass.java

+ 4
- 0
Changes.md View File

### Changes ### Changes


### version 3.30.2 on December 25, 2023

* GitHub PR #473, 475, 476

#### version 3.30.1 on December 17, 2023 #### version 3.30.1 on December 17, 2023


* GitHub Issue #471 * GitHub Issue #471

+ 1
- 1
build.xml View File



<project name="javassist" default="jar" basedir="."> <project name="javassist" default="jar" basedir=".">


<property name="dist-version" value="javassist-3.30.1-GA"/>
<property name="dist-version" value="javassist-3.30.2-GA"/>


<property environment="env"/> <property environment="env"/>
<property name="target.jar" value="javassist.jar"/> <property name="target.jar" value="javassist.jar"/>

BIN
javassist.jar View File


+ 1
- 1
pom.xml View File



<groupId>org.javassist</groupId> <groupId>org.javassist</groupId>
<artifactId>javassist</artifactId> <artifactId>javassist</artifactId>
<version>3.30.1-GA</version>
<version>3.30.2-GA</version>
<packaging>bundle</packaging> <packaging>bundle</packaging>
<name>Javassist</name> <name>Javassist</name>
<description> <description>

+ 1
- 1
src/main/javassist/CtClass.java View File

/** /**
* The version number of this release. * The version number of this release.
*/ */
public static final String version = "3.30.1-GA";
public static final String version = "3.30.2-GA";


/** /**
* Prints the version number and the copyright notice. * Prints the version number and the copyright notice.

Loading…
Cancel
Save