Author: mattip <matti.pi...@gmail.com> Branch: release-15.11 Changeset: r80246:92ba90a94650 Date: 2015-10-15 21:56 +0300 http://bitbucket.org/pypy/pypy/changeset/92ba90a94650/
Log: start a release diff --git a/LICENSE b/LICENSE --- a/LICENSE +++ b/LICENSE @@ -48,22 +48,23 @@ Michael Hudson David Schneider Holger Krekel + Ronan Lamy + Manuel Jacob Christian Tismer Hakan Ardo - Manuel Jacob - Ronan Lamy Benjamin Peterson Anders Chrigstrom Eric van Riet Paap Wim Lavrijsen Richard Emslie + Richard Plangger Alexander Schremmer Dan Villiom Podlaski Christiansen Lukas Diekmann Sven Hager Anders Lehmann + Remi Meier Aurelien Campeas - Remi Meier Niklaus Haldimann Camillo Bruni Laura Creighton @@ -87,7 +88,6 @@ Ludovic Aubry Jacob Hallen Jason Creighton - Richard Plangger Alex Martelli Michal Bendowski stian @@ -119,10 +119,12 @@ Mark Pearse Simon Cross Andreas Stührk + Edd Barrett Stefano Rivera Jean-Philippe St. Pierre Guido van Rossum Pavel Vinogradov + Jeremy Thurgood Paweł Piotr Przeradowski Paul deGrandis Ilya Osadchiy @@ -134,14 +136,12 @@ Georg Brandl Bert Freudenberg Stian Andreassen - Edd Barrett Wanja Saatkamp Gerald Klix Mike Blume Tobias Pape Oscar Nierstrasz Stefan H. Muller - Jeremy Thurgood Rami Chowdhury Eugene Oden Henry Mason @@ -153,6 +153,7 @@ Lukas Renggli Guenter Jantzen Ned Batchelder + Anton Gulenko Amit Regmi Ben Young Nicolas Chauvat @@ -200,9 +201,11 @@ Alex Perry Vincent Legoll Alan McIntyre + William Leslie Alexander Sedov Attila Gobi Christopher Pope + Devin Jeanpierre Christian Tismer Marc Abramowitz Dan Stromberg @@ -214,7 +217,6 @@ Carl Meyer Karl Ramm Pieter Zieschang - Anton Gulenko Gabriel Lukas Vacek Andrew Dalke @@ -226,6 +228,7 @@ Alejandro J. Cura Jacob Oscarson Travis Francis Athougies + Vaibhav Sood Ryan Gonzalez Ian Foote Kristjan Valur Jonsson @@ -233,8 +236,11 @@ Neil Blakey-Milner Lutz Paelike Lucio Torre + Spenser Bauman Lars Wassermann + Philipp Rustemeuer Henrik Vendelbo + Richard Lancaster Dan Buch Miguel de Val Borro Artur Lisiecki @@ -251,7 +257,6 @@ roberto@goyle Yury V. Zaytsev Anna Katrina Dominguez - William Leslie Bobby Impollonia t...@eistee.fritz.box Andrew Thompson @@ -283,6 +288,7 @@ shoma hosaka Daniel Neuhäuser Ben Mather + Niclas Olofsson halgari Boglarka Vezer Chris Pressey diff --git a/pypy/doc/contributor.rst b/pypy/doc/contributor.rst --- a/pypy/doc/contributor.rst +++ b/pypy/doc/contributor.rst @@ -18,23 +18,23 @@ Michael Hudson David Schneider Holger Krekel + Ronan Lamy + Manuel Jacob Christian Tismer Hakan Ardo - Manuel Jacob - Ronan Lamy Benjamin Peterson Anders Chrigstrom Eric van Riet Paap Wim Lavrijsen Richard Emslie + Richard Plangger Alexander Schremmer Dan Villiom Podlaski Christiansen Lukas Diekmann Sven Hager Anders Lehmann - Richard Plangger + Remi Meier Aurelien Campeas - Remi Meier Niklaus Haldimann Camillo Bruni Laura Creighton @@ -89,10 +89,12 @@ Mark Pearse Simon Cross Andreas Stührk + Edd Barrett Stefano Rivera Jean-Philippe St. Pierre Guido van Rossum Pavel Vinogradov + Jeremy Thurgood Paweł Piotr Przeradowski Paul deGrandis Ilya Osadchiy @@ -104,14 +106,12 @@ Georg Brandl Bert Freudenberg Stian Andreassen - Edd Barrett Wanja Saatkamp Gerald Klix Mike Blume Tobias Pape Oscar Nierstrasz Stefan H. Muller - Jeremy Thurgood Rami Chowdhury Eugene Oden Henry Mason @@ -123,6 +123,7 @@ Lukas Renggli Guenter Jantzen Ned Batchelder + Anton Gulenko Amit Regmi Ben Young Nicolas Chauvat @@ -170,9 +171,11 @@ Alex Perry Vincent Legoll Alan McIntyre + William Leslie Alexander Sedov Attila Gobi Christopher Pope + Devin Jeanpierre Christian Tismer Marc Abramowitz Dan Stromberg @@ -184,7 +187,6 @@ Carl Meyer Karl Ramm Pieter Zieschang - Anton Gulenko Gabriel Lukas Vacek Andrew Dalke @@ -196,6 +198,7 @@ Alejandro J. Cura Jacob Oscarson Travis Francis Athougies + Vaibhav Sood Ryan Gonzalez Ian Foote Kristjan Valur Jonsson @@ -203,8 +206,11 @@ Neil Blakey-Milner Lutz Paelike Lucio Torre + Spenser Bauman Lars Wassermann + Philipp Rustemeuer Henrik Vendelbo + Richard Lancaster Dan Buch Miguel de Val Borro Artur Lisiecki @@ -221,7 +227,6 @@ roberto@goyle Yury V. Zaytsev Anna Katrina Dominguez - William Leslie Bobby Impollonia t...@eistee.fritz.box Andrew Thompson diff --git a/pypy/doc/tool/makecontributor.py b/pypy/doc/tool/makecontributor.py --- a/pypy/doc/tool/makecontributor.py +++ b/pypy/doc/tool/makecontributor.py @@ -69,7 +69,9 @@ 'Rami Chowdhury': ['necaris'], 'Stanislaw Halik':['w31rd0'], 'Wenzhu Man':['wenzhu man', 'wenzhuman'], - 'Anton Gulenko':['anton gulenko'], + 'Anton Gulenko':['anton gulenko', 'anton_gulenko'], + 'Richard Lancaster':['richardlancaster'], + 'William Leslie':['William Leslie', 'William ML Leslie'], } alias_map = {} diff --git a/pypy/module/cpyext/include/patchlevel.h b/pypy/module/cpyext/include/patchlevel.h --- a/pypy/module/cpyext/include/patchlevel.h +++ b/pypy/module/cpyext/include/patchlevel.h @@ -29,7 +29,7 @@ #define PY_VERSION "2.7.10" /* PyPy version as a string */ -#define PYPY_VERSION "2.7.0-alpha0" +#define PYPY_VERSION "15.11.0" /* Subversion Revision number of this file (not of the repository). * Empty since Mercurial migration. */ diff --git a/pypy/module/sys/version.py b/pypy/module/sys/version.py --- a/pypy/module/sys/version.py +++ b/pypy/module/sys/version.py @@ -10,7 +10,7 @@ #XXX # sync CPYTHON_VERSION with patchlevel.h, package.py CPYTHON_API_VERSION = 1013 #XXX # sync with include/modsupport.h -PYPY_VERSION = (2, 7, 0, "alpha", 0) #XXX # sync patchlevel.h +PYPY_VERSION = (15, 11, 0, "final", 0) #XXX # sync patchlevel.h import pypy _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit