Skip to content

Commit

Permalink
fixes github issue #471
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed Dec 17, 2023
1 parent dd27258 commit 71395e3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions Changes.md
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Expand Up @@ -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"/>
Expand Down
Binary file modified javassist.jar
Binary file not shown.
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -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>

Expand Down Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion src/main/javassist/CtClass.java
Expand Up @@ -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.
Expand Down

0 comments on commit 71395e3

Please sign in to comment.