[Jython-checkins] jython: Prepare for release.

frank.wierzbicki jython-checkins at python.org
Mon Mar 24 04:13:31 CET 2014


http://hg.python.org/jython/rev/92b054125b28
changeset:   7198:92b054125b28
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Mon Mar 24 03:13:25 2014 +0000
summary:
  Prepare for release.

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


diff --git a/README.txt b/README.txt
--- a/README.txt
+++ b/README.txt
@@ -1,23 +1,22 @@
-Welcome to Jython 2.7b1
+Welcome to Jython 2.7b2
 =======================
 
-This is the first beta release of the 2.7 version of Jython. Thanks to
+This is the second beta release of the 2.7 version of Jython. Thanks to
 Adconion Media Group (http://www.adconion.com/) for sponsoring this release.
 Thanks to all who contribute to Jython.
 
-Jython 2.7b1 brings us up to language level compatibility with the 2.7 version
+Jython 2.7b2 brings us up to language level compatibility with the 2.7 version
 of CPython. We have focused largely on CPython compatibility, and so this
 release of Jython can run more pure Python apps then any previous release.
-Please see the NEWS file for detailed release notes. Some notable new features
-in this release are: a bytearray implementation, a buffer api, memoryview, a
-bz2 module.
+Please see the NEWS file for detailed release notes. This is primarily a bugfix
+release, with numerous improvements, including much improvement on Windows
+support.
 
-As the first beta release, this marks a change in the focus of development
-from adding features to bug fixing and on getting more of the test suite
-running properly.
+As a beta release we are concentrating on bug fixing and stabilizion for a
+production release.
 
 Please see the NEWS file for detailed release notes.
 
-The release was compiled on Ubuntu with JDK 7 and requires JDK 6 to run.
+The release was compiled on OSXX with JDK 7 and requires JDK 7 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
@@ -52,9 +52,9 @@
 oracle.jar=C:/workspace/HEAD/for_development/bisdevsrv28/jboss/server/infra/lib/ojdbc14.jar
 #informix.jar=${basedir}/../externals/external-jars/ifxjdbc.jar
 
-# - option for javac (build.compiler=modern is a global option to use standard jdk 1.5/1.6/1.7)
+# - option for javac (build.compiler=modern is a global option to use standard jdk 1.7/1.8)
 #build.compiler=modern
-#jdk.target.version=1.6
+#jdk.target.version=1.7
 #debug=false
 #deprecation=off
 
@@ -84,15 +84,15 @@
         <property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->
 
         <!-- The current version info -->
-        <property name="jython.version" value="2.7b1+"/>
-        <property name="jython.version.noplus" value="2.7b1"/>
+        <property name="jython.version" value="2.7b2+"/>
+        <property name="jython.version.noplus" value="2.7b2"/>
         <property name="jython.major_version" value="2"/>
         <property name="jython.minor_version" value="7"/>
         <property name="jython.micro_version" value="0"/>
         <property name="jython.release_level" value="${PY_RELEASE_LEVEL_BETA}"/>
         <!-- Usually zero, only used for alpha, beta and candidate versions
              where it must be greater than zero. -->
-        <property name="jython.release_serial" value="1"/>
+        <property name="jython.release_serial" value="2"/>
         <property name="jython.java.version" value="1.7"/>
 
         <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 = 33;
+    private static final int APIVersion = 34;
 
     public static final int NO_MTIME = -1;
 

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


More information about the Jython-checkins mailing list