Skip to content

Commit

Permalink
for release 3.27.0-GA
Browse files Browse the repository at this point in the history
  • Loading branch information
chibash committed Mar 18, 2020
1 parent 1507091 commit a6b7f12
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Java bytecode engineering toolkit
### [Javassist version 3](http://www.javassist.org)

Copyright (C) 1999-2019 by Shigeru Chiba, All rights reserved.
Copyright (C) 1999-2020 by Shigeru Chiba, All rights reserved.

Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java; it enables Java
Expand Down
4 changes: 2 additions & 2 deletions Readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<h1>Javassist version 3</h1>

<h3>Copyright (C) 1999-2019 by Shigeru Chiba, All rights reserved.</h3>
<h3>Copyright (C) 1999-2020 by Shigeru Chiba, All rights reserved.</h3>

<p><br></p>

Expand Down Expand Up @@ -281,7 +281,7 @@ <h2>Hints</h2>

<h2>Changes</h2>

<p>-version 3.27
<p>-version 3.27 on March 19, 2020
<ul>
<li>GitHub Issue #271 (PR #279), #280 (PR #281), #282, and PR #294.
</ul>
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

<property name="dist-version" value="javassist-3.26.0-GA"/>
<property name="dist-version" value="javassist-3.27.0-GA"/>

<property environment="env"/>
<property name="target.jar" value="javassist.jar"/>
Expand Down
Binary file modified javassist.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
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.26.0-GA</version>
<version>3.27.0-GA</version>
<name>Javassist</name>
<url>http://www.javassist.org/</url>

Expand Down Expand Up @@ -202,7 +202,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.1</version>
<version>3.2.0</version>
<configuration>
<attach>true</attach>
<excludePackageNames>javassist.compiler:javassist.convert:javassist.scopedpool:javassist.bytecode.stackmap</excludePackageNames>
Expand All @@ -211,6 +211,7 @@ Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.</i>]]></bottom>
<show>public</show>
<nohelp>true</nohelp>
<doclint>none</doclint>
<source>8</source>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Specification-Title: Javassist
Specification-Vendor: Shigeru Chiba, www.javassist.org
Specification-Version: 3.26.0-GA
Specification-Version: 3.27.0-GA
Main-Class: javassist.CtClass
Automatic-Module-Name: org.javassist
4 changes: 2 additions & 2 deletions src/main/javassist/CtClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public abstract class CtClass {
/**
* The version number of this release.
*/
public static final String version = "3.26.0-GA";
public static final String version = "3.27.0-GA";

/**
* Prints the version number and the copyright notice.
Expand All @@ -80,7 +80,7 @@ public abstract class CtClass {
*/
public static void main(String[] args) {
System.out.println("Javassist version " + CtClass.version);
System.out.println("Copyright (C) 1999-2019 Shigeru Chiba."
System.out.println("Copyright (C) 1999-2020 Shigeru Chiba."
+ " All Rights Reserved.");
}

Expand Down

0 comments on commit a6b7f12

Please sign in to comment.