Author: Matti Picus <[email protected]> Branch: Changeset: r84074:0b2e75889888 Date: 2016-05-01 07:29 +0300 http://bitbucket.org/pypy/pypy/changeset/0b2e75889888/
Log: start release cycle diff --git a/pypy/doc/release-5.1.1.rst b/pypy/doc/release-5.1.1.rst new file mode 100644 --- /dev/null +++ b/pypy/doc/release-5.1.1.rst @@ -0,0 +1,45 @@ +========== +PyPy 5.1.1 +========== + +We have released a bugfix for PyPy 5.1, due to a regression_ in +installing third-party packages dependant on numpy (using our numpy fork +available at https://bitbucket.org/pypy/numpy ). + +Thanks to those who reported the issue. We also fixed a regression in +translating PyPy which increased the memory required to translate. Improvement +will be noticed by downstream packagers and those who translate rather than +download pre-built binaries. + +.. _regression: https://bitbucket.org/pypy/pypy/issues/2282 + +What is PyPy? +============= + +PyPy is a very compliant Python interpreter, almost a drop-in replacement for +CPython 2.7. It's fast (`PyPy and CPython 2.7.x`_ performance comparison) +due to its integrated tracing JIT compiler. + +We also welcome developers of other +`dynamic languages`_ to see what RPython can do for them. + +This release supports: + + * **x86** machines on most common operating systems + (Linux 32/64, Mac OS X 64, Windows 32, OpenBSD, FreeBSD), + + * newer **ARM** hardware (ARMv6 or ARMv7, with VFPv3) running Linux, + + * big- and little-endian variants of **PPC64** running Linux, + + * **s390x** running Linux + +.. _`PyPy and CPython 2.7.x`: http://speed.pypy.org +.. _`dynamic languages`: http://pypyjs.org + +Please update, and continue to help us make PyPy better. + +Cheers + +The PyPy Team + diff --git a/pypy/tool/release/repackage.sh b/pypy/tool/release/repackage.sh --- a/pypy/tool/release/repackage.sh +++ b/pypy/tool/release/repackage.sh @@ -1,7 +1,7 @@ # Edit these appropriately before running this script maj=5 min=1 -rev=0 +rev=1 branchname=release-$maj.x # ==OR== release-$maj.$min.x tagname=release-$maj.$min # ==OR== release-$maj.$min.$rev _______________________________________________ pypy-commit mailing list [email protected] https://mail.python.org/mailman/listinfo/pypy-commit
