Browse Source

fixes github issue #471

tags/rel_3_30_1_ga^0
chibash 4 months ago
parent
commit
71395e3994
5 changed files with 10 additions and 6 deletions
  1. 4
    0
      Changes.md
  2. 1
    1
      build.xml
  3. BIN
      javassist.jar
  4. 4
    4
      pom.xml
  5. 1
    1
      src/main/javassist/CtClass.java

+ 4
- 0
Changes.md View File

@@ -1,5 +1,9 @@
### Changes

#### version 3.30.1 on December 17, 2023

* GitHub Issue #471

#### version 3.30 on December 17, 2023

* GitHub PR #434, 448, 463 (Issue #462), 466, 467, 468, 469, 470,

+ 1
- 1
build.xml View File

@@ -6,7 +6,7 @@

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

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

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

BIN
javassist.jar View File


+ 4
- 4
pom.xml View File

@@ -7,7 +7,7 @@
Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java.
</description>
<version>3.30.0-GA</version>
<version>3.30.1-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>

@@ -151,8 +151,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<configuration>
<source>8</source>
<target>8</target>
<source>11</source>
<target>11</target>
<testSource>11</testSource>
<testTarget>11</testTarget>
<testCompilerArgument>-parameters</testCompilerArgument>
@@ -218,7 +218,7 @@ Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.3.0</version>
<version>5.1.9</version>
<executions>
<execution>
<id>bundle-manifest</id>

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

@@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
public static final String version = "3.30.0-GA";
public static final String version = "3.30.1-GA";

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

Loading…
Cancel
Save