[Jython-checkins] jython: Updates for alpha release.

frank.wierzbicki jython-checkins at python.org
Wed May 16 19:27:58 CEST 2012


http://hg.python.org/jython/rev/cf741da06d5c
changeset:   6656:cf741da06d5c
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Wed May 16 10:27:47 2012 -0700
summary:
  Updates for alpha release.

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


diff --git a/README.txt b/README.txt
--- a/README.txt
+++ b/README.txt
@@ -1,9 +1,12 @@
-Welcome to Jython 2.5.3b1
-=======================
+Welcome to Jython 2.7.0a1
+=========================
 
-This is the first beta release of the 2.5.3 version of Jython
+This is the first alpha release of the 2.7.0 version of Jython. Thanks to
+Adconion Media Group (http://www.adconion.com/) for sponsoring this release.
+Thanks to all who contributed 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.
+The release was compiled on Ubuntu with JDK 6 and requires JDK 6 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,13 +123,15 @@
         <property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->
 
         <!-- The current version info -->
-        <property name="jython.version" value="2.7a0+"/>
-        <property name="jython.version.noplus" value="2.7a0"/>
+        <property name="jython.version" value="2.7a1+"/>
+        <property name="jython.version.noplus" value="2.7a1"/>
         <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_ALPHA}"/>
-        <property name="jython.release_serial" value="0"/>
+        <!-- Usually zero, only used for alpha, beta and candidate versions
+             where it must be greater than zero. -->
+        <property name="jython.release_serial" value="1"/>
 		
     	<!--- Indy support -->
     	<condition property="jython.use.invokedynamic">
@@ -467,7 +469,7 @@
         <!-- change README.txt version string, if so defined: used for
         snapshot builds. XXX: a bit broken for now-->
         <replace file="${jython.base.dir}/README.txt" token='2.7a1+'
-        value='2.5a${svn.revision}' />
+        value='2.7a${svn.revision}' />
         <replace file="${jython.base.dir}/README.txt">
             <replacetoken>=======================</replacetoken>
             <replacevalue>--------------------------
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