Skip to content

Commit 8777f61

Browse files
authored
Merge pull request #1818 from nicoddemus/release-3.0
Release 3.0
2 parents be9356a + c74ce37 commit 8777f61

File tree

3 files changed

+85
-21
lines changed

3 files changed

+85
-21
lines changed

CHANGELOG.rst

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
3.0.0.dev1
2-
==========
1+
3.0.0
2+
=====
33

44
**Incompatible changes**
55

@@ -55,11 +55,6 @@ time or change existing behaviors in order to make them less surprising/more use
5555
* ``--exitfirst / -x`` can now be overridden by a following ``--maxfail=N``
5656
and is just a synonym for ``--maxfail=1``.
5757

58-
*
59-
60-
*
61-
62-
*
6358

6459
**New Features**
6560

@@ -147,13 +142,6 @@ time or change existing behaviors in order to make them less surprising/more use
147142
* Allow passing a custom debugger class (e.g. ``--pdbcls=IPython.core.debugger:Pdb``).
148143
Thanks to `@anntzer`_ for the PR.
149144

150-
*
151-
152-
*
153-
154-
*
155-
156-
*
157145

158146
**Changes**
159147

@@ -296,11 +284,6 @@ time or change existing behaviors in order to make them less surprising/more use
296284
a PR, `@eolo999`_ for the initial PR and `@tomviner`_ for his guidance during
297285
EuroPython2016 sprint.
298286

299-
*
300-
301-
*
302-
303-
*
304287

305288
**Bug Fixes**
306289

@@ -343,7 +326,6 @@ time or change existing behaviors in order to make them less surprising/more use
343326
* Fixed off-by-one error with lines from ``request.node.warn``.
344327
Thanks to `@blueyed`_ for the PR.
345328

346-
*
347329

348330
.. _#1210: https://github.com/pytest-dev/pytest/issues/1210
349331
.. _#1235: https://github.com/pytest-dev/pytest/issues/1235

_pytest/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
#
2-
__version__ = '3.0.0.dev1'
2+
__version__ = '3.0.0'

doc/en/announce/release-3.0.0.rst

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
pytest-3.0.0
2+
============
3+
4+
The pytest team is proud to announce the 3.0.0 release!
5+
6+
pytest is a mature Python testing tool with more than a 1600 tests
7+
against itself, passing on many different interpreters and platforms.
8+
9+
This release contains a lot of bugs and improvements, and much of
10+
the work done on it was possible because of the 2016 Sprint[1], which
11+
was funded by an indiegogo campaign which raised over US$12,000 with
12+
nearly 100 backers.
13+
14+
There's a "What's new in pytest 3.0" [2] blog post highlighting the
15+
major features in this release.
16+
17+
To see the complete changelog and documentation, please visit:
18+
19+
http://docs.pytest.org
20+
21+
As usual, you can upgrade from pypi via:
22+
23+
pip install -U pytest
24+
25+
Thanks to all who contributed to this release, among them:
26+
27+
AbdealiJK
28+
Ana Ribeiro
29+
Antony Lee
30+
Brandon W Maister
31+
Brianna Laugher
32+
Bruno Oliveira
33+
Ceridwen
34+
Christian Boelsen
35+
Daniel Hahler
36+
Danielle Jenkins
37+
Dave Hunt
38+
Diego Russo
39+
Dmitry Dygalo
40+
Edoardo Batini
41+
Eli Boyarski
42+
Florian Bruhin
43+
Floris Bruynooghe
44+
Greg Price
45+
Guyzmo
46+
HEAD KANGAROO
47+
JJ
48+
Javi Romero
49+
Javier Domingo Cansino
50+
Kale Kundert
51+
Kalle Bronsen
52+
Marius Gedminas
53+
Matt Williams
54+
Mike Lundy
55+
Oliver Bestwalter
56+
Omar Kohl
57+
Raphael Pierzina
58+
RedBeardCode
59+
Roberto Polli
60+
Romain Dorgueil
61+
Roman Bolshakov
62+
Ronny Pfannschmidt
63+
Stefan Zimmermann
64+
Steffen Allner
65+
Tareq Alayan
66+
Ted Xiao
67+
Thomas Grainger
68+
Tom Viner
69+
TomV
70+
Vasily Kuznetsov
71+
aostr
72+
marscher
73+
palaviv
74+
satoru
75+
taschini
76+
77+
78+
Happy testing,
79+
The py.test Development Team
80+
81+
[1] http://blog.pytest.org/2016/pytest-development-sprint/
82+
[2] http://blog.pytest.org/2016/whats-new-in-pytest-30/

0 commit comments

Comments
 (0)