From a3e6c14da337663f4f4706a9794ca1b5bd336384 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 18 Aug 2016 11:41:10 -0400 Subject: [PATCH 1/3] Bump version to 3.0.0 --- _pytest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_pytest/__init__.py b/_pytest/__init__.py index 3252e0824..40f66537c 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '3.0.0.dev1' +__version__ = '3.0.0' From 7f18367582f9ba00db2a34b2323159053cbde276 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 18 Aug 2016 11:43:21 -0400 Subject: [PATCH 2/3] Finalize CHANGELOG --- CHANGELOG.rst | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71d86a489..69971a739 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -3.0.0.dev1 -========== +3.0.0 +===== **Incompatible changes** @@ -55,11 +55,6 @@ time or change existing behaviors in order to make them less surprising/more use * ``--exitfirst / -x`` can now be overridden by a following ``--maxfail=N`` and is just a synonym for ``--maxfail=1``. -* - -* - -* **New Features** @@ -147,13 +142,6 @@ time or change existing behaviors in order to make them less surprising/more use * Allow passing a custom debugger class (e.g. ``--pdbcls=IPython.core.debugger:Pdb``). Thanks to `@anntzer`_ for the PR. -* - -* - -* - -* **Changes** @@ -296,11 +284,6 @@ time or change existing behaviors in order to make them less surprising/more use a PR, `@eolo999`_ for the initial PR and `@tomviner`_ for his guidance during EuroPython2016 sprint. -* - -* - -* **Bug Fixes** @@ -343,7 +326,6 @@ time or change existing behaviors in order to make them less surprising/more use * Fixed off-by-one error with lines from ``request.node.warn``. Thanks to `@blueyed`_ for the PR. -* .. _#1210: https://github.com/pytest-dev/pytest/issues/1210 .. _#1235: https://github.com/pytest-dev/pytest/issues/1235 From c74ce371ab923edb990f40cf21f4309e1b4871ad Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 18 Aug 2016 12:02:01 -0400 Subject: [PATCH 3/3] Add release announcement --- doc/en/announce/release-3.0.0.rst | 82 +++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 doc/en/announce/release-3.0.0.rst diff --git a/doc/en/announce/release-3.0.0.rst b/doc/en/announce/release-3.0.0.rst new file mode 100644 index 000000000..f031840fb --- /dev/null +++ b/doc/en/announce/release-3.0.0.rst @@ -0,0 +1,82 @@ +pytest-3.0.0 +============ + +The pytest team is proud to announce the 3.0.0 release! + +pytest is a mature Python testing tool with more than a 1600 tests +against itself, passing on many different interpreters and platforms. + +This release contains a lot of bugs and improvements, and much of +the work done on it was possible because of the 2016 Sprint[1], which +was funded by an indiegogo campaign which raised over US$12,000 with +nearly 100 backers. + +There's a "What's new in pytest 3.0" [2] blog post highlighting the +major features in this release. + +To see the complete changelog and documentation, please visit: + + http://docs.pytest.org + +As usual, you can upgrade from pypi via: + + pip install -U pytest + +Thanks to all who contributed to this release, among them: + + AbdealiJK + Ana Ribeiro + Antony Lee + Brandon W Maister + Brianna Laugher + Bruno Oliveira + Ceridwen + Christian Boelsen + Daniel Hahler + Danielle Jenkins + Dave Hunt + Diego Russo + Dmitry Dygalo + Edoardo Batini + Eli Boyarski + Florian Bruhin + Floris Bruynooghe + Greg Price + Guyzmo + HEAD KANGAROO + JJ + Javi Romero + Javier Domingo Cansino + Kale Kundert + Kalle Bronsen + Marius Gedminas + Matt Williams + Mike Lundy + Oliver Bestwalter + Omar Kohl + Raphael Pierzina + RedBeardCode + Roberto Polli + Romain Dorgueil + Roman Bolshakov + Ronny Pfannschmidt + Stefan Zimmermann + Steffen Allner + Tareq Alayan + Ted Xiao + Thomas Grainger + Tom Viner + TomV + Vasily Kuznetsov + aostr + marscher + palaviv + satoru + taschini + + +Happy testing, +The py.test Development Team + +[1] http://blog.pytest.org/2016/pytest-development-sprint/ +[2] http://blog.pytest.org/2016/whats-new-in-pytest-30/