[Jython-checkins] jython: Updates for 2.7.1 beta1 release.

frank.wierzbicki jython-checkins at python.org
Fri Sep 11 03:41:21 CEST 2015


https://hg.python.org/jython/rev/2f0b46abbe31
changeset:   7732:2f0b46abbe31
tag:         v2.7.1b1
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Fri Sep 11 01:40:35 2015 +0000
summary:
  Updates for 2.7.1 beta1 release.

files:
  README.txt |   8 ++++----
  build.xml  |  12 ++++++------
  2 files changed, 10 insertions(+), 10 deletions(-)


diff --git a/README.txt b/README.txt
--- a/README.txt
+++ b/README.txt
@@ -1,10 +1,10 @@
 Jython: Python for the Java Platform
 
-Welcome to Jython 2.7.0!
+Welcome to Jython 2.7.1 beta 1!
 
-This is the final release of the 2.7.0 version of Jython. Along with language
-and runtime compatibility with CPython 2.7.0, Jython 2.7 provides substantial
-support of the Python ecosystem. This includes built-in support of
+This is the first beta release of the 2.7.1 version of Jython. Along with
+language and runtime compatibility with CPython 2.7.1, Jython 2.7 provides
+substantial support of the Python ecosystem. This includes built-in support of
 pip/setuptools (you can use with bin/pip) and a native launcher for Windows
 (bin/jython.exe), with the implication that you can finally install Jython
 scripts on Windows.
diff --git a/build.xml b/build.xml
--- a/build.xml
+++ b/build.xml
@@ -84,12 +84,12 @@
         <property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->
 
         <!-- The current version info -->
-        <property name="jython.version" value="2.7.0+"/>
-        <property name="jython.version.noplus" value="2.7.0"/>
+        <property name="jython.version" value="2.7.1+"/>
+        <property name="jython.version.noplus" value="2.7.1"/>
         <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_FINAL}"/>
+        <property name="jython.micro_version" value="1"/>
+        <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="0"/>
@@ -412,8 +412,8 @@
     <target name="brand-readme-version" depends="checkout" if="do.snapshot.build">
         <!-- 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.7b3+'
-        value='2.7b${xxx.revision}' />
+        <replace file="${jython.base.dir}/README.txt" token='2.7.1b1+'
+        value='2.7.1b${xxx.revision}' />
         <replace file="${jython.base.dir}/README.txt">
             <replacetoken>=======================</replacetoken>
             <replacevalue>--------------------------

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


More information about the Jython-checkins mailing list