[Jython-checkins] jython: Prepare for 2.7.1rc1 release.

frank.wierzbicki jython-checkins at python.org
Mon Feb 27 23:32:45 EST 2017


https://hg.python.org/jython/rev/330556fdad47
changeset:   8039:330556fdad47
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Tue Feb 28 04:31:40 2017 +0000
summary:
  Prepare for 2.7.1rc1 release.

files:
  README.txt |   4 ++--
  build.xml  |  14 +++++++-------
  2 files changed, 9 insertions(+), 9 deletions(-)


diff --git a/README.txt b/README.txt
--- a/README.txt
+++ b/README.txt
@@ -1,8 +1,8 @@
 Jython: Python for the Java Platform
 
-Welcome to Jython 2.7.1 beta 3!
+Welcome to Jython 2.7.1 release candidate 1!
 
-This is the third beta release of the 2.7.1 version of Jython. Along with
+This is the first release candidate 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
diff --git a/build.xml b/build.xml
--- a/build.xml
+++ b/build.xml
@@ -84,15 +84,15 @@
         <property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->
 
         <!-- The current version info -->
-        <property name="jython.version" value="2.7.1b3"/>
-        <property name="jython.version.noplus" value="2.7.1b3"/>
+        <property name="jython.version" value="2.7.1rc1"/>
+        <property name="jython.version.noplus" value="2.7.1rc1"/>
         <property name="jython.major_version" value="2"/>
         <property name="jython.minor_version" value="7"/>
-        <property name="jython.micro_version" value="3"/>
-        <property name="jython.release_level" value="${PY_RELEASE_LEVEL_BETA}"/>
+        <property name="jython.micro_version" value="1"/>
+        <property name="jython.release_level" value="${PY_RELEASE_LEVEL_GAMMA}"/>
         <!-- Usually zero, only used for alpha, beta and candidate versions
              where it must be greater than zero. -->
-        <property name="jython.release_serial" value="0"/>
+        <property name="jython.release_serial" value="1"/>
         <property name="jython.java.version" value="1.7"/>
 
         <condition property="do.snapshot.build">
@@ -397,7 +397,7 @@
     <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.7.1b3+'
+        <replace file="${jython.base.dir}/README.txt" token='2.7.1rc1+'
         value='2.7.1b${xxx.revision}' />
         <replace file="${jython.base.dir}/README.txt">
             <replacetoken>=======================</replacetoken>
@@ -432,7 +432,7 @@
     </target>
 
     <target name="antlr_gen" depends="prepare-output" unless="antlr.notneeded">
-        <java classname="org.antlr.Tool" failonerror="true" fork="true" dir="${jython.base.dir}">
+        <java classname="org.antlr.Tool" failonerror="false" fork="true" dir="${jython.base.dir}">
             <jvmarg value="-Xmx512m"/>
             <arg value="-Xconversiontimeout"/>
             <arg value="2000"/>

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


More information about the Jython-checkins mailing list