diff --git a/doc/src/changelog.rst b/doc/src/changelog.rst index dcc735a..d88b37b 100644 --- a/doc/src/changelog.rst +++ b/doc/src/changelog.rst @@ -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. diff --git a/doc/src/conf.py b/doc/src/conf.py index 18a46b1..1f19aad 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -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. diff --git a/setup.py b/setup.py index d829651..b98019f 100755 --- a/setup.py +++ b/setup.py @@ -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