diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 44fc9f259..dd8647b8a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,7 +1,5 @@ -3.0.2.dev -========= - -* +3.0.2 +===== * Improve error message when passing non-string ids to ``pytest.mark.parametrize`` (`#1857`_). Thanks `@okken`_ for the report and `@nicoddemus`_ for the PR. @@ -24,8 +22,6 @@ which have significant logic in their tearDown machinery (`#1890`_). Thanks `@mbyt`_ for the PR. -* - .. _@joguSD: https://github.com/joguSD .. _@AiOO: https://github.com/AiOO .. _@mbyt: https://github.com/mbyt diff --git a/_pytest/__init__.py b/_pytest/__init__.py index c99044765..757e56087 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '3.0.2.dev' +__version__ = '3.0.2' diff --git a/doc/en/announce/index.rst b/doc/en/announce/index.rst index 8613582b3..90e6fcb6e 100644 --- a/doc/en/announce/index.rst +++ b/doc/en/announce/index.rst @@ -5,10 +5,11 @@ Release announcements .. toctree:: :maxdepth: 2 - - sprint2016 + + release-3.0.2 release-3.0.1 release-3.0.0 + sprint2016 release-2.9.2 release-2.9.1 release-2.9.0 diff --git a/doc/en/announce/release-3.0.2.rst b/doc/en/announce/release-3.0.2.rst new file mode 100644 index 000000000..09e10b28c --- /dev/null +++ b/doc/en/announce/release-3.0.2.rst @@ -0,0 +1,26 @@ +pytest-3.0.2 +============ + +pytest 3.0.2 has just been released to PyPI. + +This release fixes some regressions reported in version 3.0.0, being a +drop-in replacement. To upgrade:: + + pip install --upgrade pytest + +The changelog is available at http://doc.pytest.org/en/latest/changelog.html. + +Thanks to all who contributed to this release, among them: + +* Adam Chainz +* Andrew Svetlov +* Bruno Oliveira +* Daniel Hahler +* Dmitry Dygalo +* Florian Bruhin +* Marcin Bachry +* Ronny Pfannschmidt +* matthiasha + +Happy testing, +The pytest Development Team