Skip to content

Commit

Permalink
Prepare for release 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
RKrahl committed Dec 2, 2018
1 parent 64c52d6 commit 55c1618
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions doc/src/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
History of changes to pytest-dependency
=======================================

0.4 (2018-12-02)
Incompatible changes
+ Require pytest version 3.6.0 or newer. This implicitly drops
support for Python 2.6 and for Python 3.3 and older.

Bug fixes and minor changes
+ Issue #24: get_marker no longer available in pytest 4.0.0.
(Thanks to Rogdham for the PR.)
+ Issue #28: Applying markers directly in parametrize is no
longer available in 4.0.

0.3.2 (2018-01-17)
Bug fixes and minor changes
+ Issue #5: properly register the dependency marker.
Expand Down
4 changes: 2 additions & 2 deletions doc/src/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = '0.3'
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.3.2'
release = '0.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
skipped if any of the dependencies did fail or has been skipped.
"""

__version__ = "0.3.2"
__version__ = "0.4.0"

import os
import os.path
Expand Down

0 comments on commit 55c1618

Please sign in to comment.