From: <fwi...@us...> - 2009-06-08 17:19:06
|
Revision: 6470 http://jython.svn.sourceforge.net/jython/?rev=6470&view=rev Author: fwierzbicki Date: 2009-06-08 17:18:04 +0000 (Mon, 08 Jun 2009) Log Message: ----------- Increment to rc4, also increment API_VERSION since some compiler changes have occured without an update. Modified Paths: -------------- trunk/jython/NEWS trunk/jython/README.txt trunk/jython/build.xml trunk/jython/src/org/python/core/imp.java Modified: trunk/jython/NEWS =================================================================== --- trunk/jython/NEWS 2009-06-08 07:06:07 UTC (rev 6469) +++ trunk/jython/NEWS 2009-06-08 17:18:04 UTC (rev 6470) @@ -20,6 +20,8 @@ recompiling due to stale bytecode - Fixed minor short term memory leaks in functions on some lists allocated inline + - Updated imp.APIVersion to 23 as some compiler changes occured since the + last update. Jython 2.5.0 rc3 Bugs fixed Modified: trunk/jython/README.txt =================================================================== --- trunk/jython/README.txt 2009-06-08 07:06:07 UTC (rev 6469) +++ trunk/jython/README.txt 2009-06-08 17:18:04 UTC (rev 6470) @@ -1,8 +1,9 @@ -Welcome to Jython 2.5rc3 +Welcome to Jython 2.5rc4 ======================== -This is the third release candidate of the 2.5 version of Jython. It partially -fixes JLine on Cygwin and some threading issues. +This is the fourth release candidate of the 2.5 version of Jython. Many bugs +are fixed in this release, and the regression tests now pass on Windows. See +the NEWS file for details. The release was compiled on Mac OS X with JDK 5 and requires JDK 5 to run. Modified: trunk/jython/build.xml =================================================================== --- trunk/jython/build.xml 2009-06-08 07:06:07 UTC (rev 6469) +++ trunk/jython/build.xml 2009-06-08 17:18:04 UTC (rev 6470) @@ -187,13 +187,13 @@ <property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA --> <!-- The current version info --> - <property name="jython.version" value="2.5rc3+"/> - <property name="jython.version.noplus" value="2.5rc3"/> + <property name="jython.version" value="2.5rc4+"/> + <property name="jython.version.noplus" value="2.5rc4"/> <property name="jython.major_version" value="2"/> <property name="jython.minor_version" value="5"/> <property name="jython.micro_version" value="0"/> <property name="jython.release_level" value="${PY_RELEASE_LEVEL_GAMMA}"/> - <property name="jython.release_serial" value="3"/> + <property name="jython.release_serial" value="4"/> <condition property="do.snapshot.build"> <isset property="snapshot.revision" /> Modified: trunk/jython/src/org/python/core/imp.java =================================================================== --- trunk/jython/src/org/python/core/imp.java 2009-06-08 07:06:07 UTC (rev 6469) +++ trunk/jython/src/org/python/core/imp.java 2009-06-08 17:18:04 UTC (rev 6470) @@ -20,7 +20,7 @@ private static final String UNKNOWN_SOURCEFILE = "<unknown>"; - private static final int APIVersion = 22; + private static final int APIVersion = 23; public static final int NO_MTIME = -1; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |