[Jython-checkins] jython: Prepare for 2.7b1.

frank.wierzbicki jython-checkins at python.org
Sun Feb 10 00:08:19 CET 2013


http://hg.python.org/jython/rev/53ae75d23e28
changeset:   7025:53ae75d23e28
user:        Frank Wierzbicki <fwierzbicki at gmail.com>
date:        Sat Feb 09 15:08:05 2013 -0800
summary:
  Prepare for 2.7b1.

files:
  README.txt |  13 +++++++++++--
  build.xml  |   7 ++++++-
  2 files changed, 17 insertions(+), 3 deletions(-)


diff --git a/README.txt b/README.txt
--- a/README.txt
+++ b/README.txt
@@ -3,9 +3,18 @@
 
 This is the first 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 contributed to Jython.
+Thanks to all who contribute to Jython.
 
-This release TODO
+Jython 2.7b1 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.
+
+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.
 
 Please see the NEWS file for detailed release notes.
 
diff --git a/build.xml b/build.xml
--- a/build.xml
+++ b/build.xml
@@ -92,15 +92,20 @@
         <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="2"/>
+        <property name="jython.release_serial" value="1"/>
 		
     	<!--- Indy support -->
+        <!-- FIXME: hard coding to 1.6 for now until the compiler is updated. -->
+        <property name="jython.java.version" value="1.6"/>
+        <!--
     	<condition property="jython.use.invokedynamic">
 			<equals arg1="${java.specification.version}" arg2="1.7"/>
     	</condition>
     	<condition property="jython.java.version" value="1.7" else="1.6">
     		<isset property="jython.use.invokedynamic"/>
     	</condition>
+        -->
+
         <condition property="do.snapshot.build">
             <isset property="snapshot.revision" />
         </condition>

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


More information about the Jython-checkins mailing list