Skip to content

Commit 55c1618

Browse files
committed
Prepare for release 0.4.0.
1 parent 64c52d6 commit 55c1618

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

doc/src/changelog.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
History of changes to pytest-dependency
22
=======================================
33

4+
0.4 (2018-12-02)
5+
Incompatible changes
6+
+ Require pytest version 3.6.0 or newer. This implicitly drops
7+
support for Python 2.6 and for Python 3.3 and older.
8+
9+
Bug fixes and minor changes
10+
+ Issue #24: get_marker no longer available in pytest 4.0.0.
11+
(Thanks to Rogdham for the PR.)
12+
+ Issue #28: Applying markers directly in parametrize is no
13+
longer available in 4.0.
14+
415
0.3.2 (2018-01-17)
516
Bug fixes and minor changes
617
+ Issue #5: properly register the dependency marker.

doc/src/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '0.3'
55+
version = '0.4'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.3.2'
57+
release = '0.4.0'
5858

5959
# The language for content autogenerated by Sphinx. Refer to documentation
6060
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
skipped if any of the dependencies did fail or has been skipped.
77
"""
88

9-
__version__ = "0.3.2"
9+
__version__ = "0.4.0"
1010

1111
import os
1212
import os.path

0 commit comments

Comments
 (0)