[Jython-checkins] jython: Begin to identify as Jython 2.7.3a1.

jeff.allen jython-checkins at python.org
Sat Mar 21 19:01:08 EDT 2020


https://hg.python.org/jython/rev/4a629d4692b5
changeset:   8339:4a629d4692b5
user:        Jeff Allen <ja.py at farowl.co.uk>
date:        Sat Mar 21 23:00:04 2020 +0000
summary:
  Begin to identify as Jython 2.7.3a1.

files:
  NEWS         |  7 +++++++
  build.gradle |  2 +-
  build.xml    |  6 +++---
  3 files changed, 11 insertions(+), 4 deletions(-)


diff --git a/NEWS b/NEWS
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,13 @@
 For more details of issue [ n ], please see https://hg.python.org/jython, or for tags [ GH-n ] see
 https://github.com/jythontools/jython
 
+Jython 2.7.3a1
+  Bugs fixed
+    - [  ] 
+
+  New Features
+    - 
+
 Jython 2.7.2
   same as 2.7.2rc1
 
diff --git a/build.gradle b/build.gradle
--- a/build.gradle
+++ b/build.gradle
@@ -45,7 +45,7 @@
 // Versions are specified in this grammar:
 // <major> . <minor> ( . <micro> )? ( <release> <serial> )? ( - <word> )?
 
-version = '2.7.2'
+version = '2.7.3a1'
 
 // Valid examples (please preserve in comments):
 //version = '2.7.2a2'
diff --git a/build.xml b/build.xml
--- a/build.xml
+++ b/build.xml
@@ -105,11 +105,11 @@
              specify that suffix by -Dsnapshot.name on the ant command line. -->
         <property name="jython.major_version" value="2"/>
         <property name="jython.minor_version" value="7"/>
-        <property name="jython.micro_version" value="2"/>
-        <property name="jython.release_level" value="${PY_RELEASE_LEVEL_FINAL}"/>
+        <property name="jython.micro_version" value="3"/>
+        <property name="jython.release_level" value="${PY_RELEASE_LEVEL_ALPHA}"/>
 
         <!-- Zero at full release: one-up number for alpha, beta and candidate versions. -->
-        <property name="jython.release_serial" value="0"/>
+        <property name="jython.release_serial" value="1"/>
     </target>
 
     <target name="common-constants">

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


More information about the Jython-checkins mailing list