[Jython-checkins] jython (2.5): Prep for 2.5.3 final.

frank.wierzbicki jython-checkins at python.org
Mon Aug 13 22:53:06 CEST 2012


http://hg.python.org/jython/rev/3d2dbae23c52
changeset:   6837:3d2dbae23c52
branch:      2.5
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Mon Aug 13 13:49:48 2012 -0700
summary:
  Prep for 2.5.3 final.

files:
  README.txt                   |  22 ++++++++++++++++------
  build.xml                    |   4 ++--
  src/org/python/core/imp.java |   2 +-
  3 files changed, 19 insertions(+), 9 deletions(-)


diff --git a/README.txt b/README.txt
--- a/README.txt
+++ b/README.txt
@@ -1,10 +1,20 @@
-Welcome to Jython 2.5.3rc1
-==========================
+Welcome to Jython 2.5.3!
+========================
 
-This is the first release candidate of the 2.5.3 version of Jython.
+This is the final release of Jython 2.5.3.
+
 Thanks to Adconion Media Group (http://www.adconion.com/) for sponsoring this
-release, and thanks to all who contribute to Jython.  Please see the NEWS file
-for detailed release notes.  The release was compiled on Ubuntu with JDK 6 and
-requires JDK 5 to run.
+release, and thanks to all who contribute to Jython.
+
+This release fixes numerous bugs since the 2.5.2 release of Jython. Some
+highlights include:
+
+* File uploads where broken in Tomcat and Jetty.
+* Imports sometimes blew the stack. This was seen in SQLAlchemy for example.
+* Some race conditions and threading issues where fixed.
+* Several JSR 223 problems have been fixed.
+
+Please see the NEWS file for detailed release notes.  The release was compiled
+on Ubuntu with JDK 6 and requires JDK 5 to run.
 
 Please try this out and report any bugs at http://bugs.jython.org.
diff --git a/build.xml b/build.xml
--- a/build.xml
+++ b/build.xml
@@ -123,12 +123,12 @@
         <property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->
 
         <!-- The current version info -->
-        <property name="jython.version" value="2.5.3+"/>
+        <property name="jython.version" value="2.5.3"/>
         <property name="jython.version.noplus" value="2.5.3"/>
         <property name="jython.major_version" value="2"/>
         <property name="jython.minor_version" value="5"/>
         <property name="jython.micro_version" value="3"/>
-        <property name="jython.release_level" value="${PY_RELEASE_LEVEL_GAMMA}"/>
+        <property name="jython.release_level" value="${PY_RELEASE_LEVEL_FINAL}"/>
         <property name="jython.release_serial" value="0"/>
 
         <condition property="do.snapshot.build">
diff --git a/src/org/python/core/imp.java b/src/org/python/core/imp.java
--- a/src/org/python/core/imp.java
+++ b/src/org/python/core/imp.java
@@ -26,7 +26,7 @@
 
     private static final String UNKNOWN_SOURCEFILE = "<unknown>";
 
-    private static final int APIVersion = 32;
+    private static final int APIVersion = 33;
 
     public static final int NO_MTIME = -1;
 

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list