Browse Source

for releasing 3.9.0.GA


git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@460 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
tags/rel_3_17_1_ga
chiba 15 years ago
parent
commit
4e0f7ad05a
3 changed files with 5 additions and 4 deletions
  1. 2
    1
      Readme.html
  2. 2
    2
      build.xml
  3. 1
    1
      pom.xml

+ 2
- 1
Readme.html View File



<h2>Changes</h2> <h2>Changes</h2>


<p>-version 3.9
<p>-version 3.9 on October 9, 2008
<ul> <ul>
<li>ClassPool.makeClassIfNew(InputStream) was implemented. <li>ClassPool.makeClassIfNew(InputStream) was implemented.
<li>CtNewMethod.wrapped(..) and CtNewConstructor.wrapped(..) <li>CtNewMethod.wrapped(..) and CtNewConstructor.wrapped(..)
implicitly append a method like _added_m$0. implicitly append a method like _added_m$0.
This method now has a synthetic attribute. This method now has a synthetic attribute.
<li>JIRA JASSIST-66 has been fixed.
</ul> </ul>


<p>-version 3.8.1 on July 17, 2008 <p>-version 3.8.1 on July 17, 2008

+ 2
- 2
build.xml View File



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


<property name="dist-version" value="javassist-3.8.1"/>
<property name="dist-version" value="javassist-3.9.0"/>


<property environment="env"/> <property environment="env"/>
<property name="target.jar" value="javassist.jar"/> <property name="target.jar" value="javassist.jar"/>
<zipfileset dir="${basedir}" prefix="${dist-version}"> <zipfileset dir="${basedir}" prefix="${dist-version}">
<include name="html/**"/> <include name="html/**"/>
<include name="sample/**"/> <include name="sample/**"/>
<include name="src/**"/>
<include name="src/main/**"/>
<include name="tutorial/**"/> <include name="tutorial/**"/>
<include name="*.html"/> <include name="*.html"/>
<include name="*.xml"/> <include name="*.xml"/>

+ 1
- 1
pom.xml View File

<description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation <description>Javassist (JAVA programming ASSISTant) makes Java bytecode manipulation
simple. It is a class library for editing bytecodes in Java. simple. It is a class library for editing bytecodes in Java.
</description> </description>
<version>3.8.1.GA</version>
<version>3.9.0.GA</version>
<name>Javassist</name> <name>Javassist</name>
<url>http://www.javassist.org/</url> <url>http://www.javassist.org/</url>
<build> <build>

Loading…
Cancel
Save