Skip to content

Commit

Permalink
Update version reported to 2.7.2a1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff5 committed Nov 23, 2017
1 parent 5717dd2 commit 6804dfb
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 18 deletions.
5 changes: 4 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ Jython NEWS

For more details, please see https://hg.python.org/jython

Development tip
Jython 2.7.2a1
Bugs fixed
- [ 2632 ] Handle unicode data appropriately in csv module
- [ 2638 ] str not default-decoded in str-unicode operations
- [ 2622 ] json dumps error (use of AbstractDict)
- [ 2607, 2620 ] Error loading Python DLL (error code 14001)
- [ 2612 ] NPE while trying to load class
- [ 2609 ] PyType.fromClass publication race (discovered in strptime and re)
Expand Down
19 changes: 7 additions & 12 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Jython: Python for the Java Platform

Welcome to Jython 2.7.1!
Welcome to Jython 2.7.2a1.

This is the final release of the 2.7.1 version of Jython. Along with
This is an alpha release of the 2.7.2 version of Jython. Along with
language and runtime compatibility with CPython 2.7, 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
Expand Down Expand Up @@ -31,13 +31,8 @@ about half an hour.

See ACKNOWLEDGMENTS for details about Jython's copyright, license,
contributors, and mailing lists; and NEWS for detailed release notes,
including bugs fixed, backwards breaking changes, and new
features. Thanks go to Google for sponsoring Stefan Richthofer for the
Google Summer of Code; there are so many others to thank, but Stefan's
work proved instrumental for getting 2.7.1 out, all in preparation for
his actual work on JyNI for the summer of 2017
(http://jyni.org/). Motivation helps! We also deeply thank all who
contribute to Jython, including - but not limited to - bug reports,
patches, pull requests, documentation changes, support emails, and
fantastic conversation on Freenode at #jython. Join us there for your
questions and answers!
including bugs fixed, backwards breaking changes, and new features. We
sincerely thank all who contribute to Jython, including - but not
limited to - bug reports, patches, pull requests, documentation
changes, support emails, and fantastic conversation on Freenode at
#jython. Join us there for your questions and answers!
10 changes: 5 additions & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,15 +84,15 @@ oracle.jar=C:/workspace/HEAD/for_development/bisdevsrv28/jboss/server/infra/lib/
<property name="PY_RELEASE_LEVEL_SNAPSHOT" value="170"/> <!-- 0xAA -->

<!-- The current version info -->
<property name="jython.version" value="2.7.1"/>
<property name="jython.version.noplus" value="2.7.1"/>
<property name="jython.version" value="2.7.2a1"/>
<property name="jython.version.noplus" value="2.7.2a1"/>
<property name="jython.major_version" value="2"/>
<property name="jython.minor_version" value="7"/>
<property name="jython.micro_version" value="1"/>
<property name="jython.release_level" value="${PY_RELEASE_LEVEL_FINAL}"/>
<property name="jython.micro_version" value="2"/>
<property name="jython.release_level" value="${PY_RELEASE_LEVEL_ALPHA}"/>
<!-- 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">
Expand Down

0 comments on commit 6804dfb

Please sign in to comment.