diff --git a/CHANGELOG.md b/CHANGELOG.md index 82a7f6d..139ac48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ With that version the notation of relative markers in other modules is also planned to change - instead of using the dot notation, the standard pytest nodeid will be used. +## [Version 0.11.0](https://pypi.org/project/pytest-order/0.11.0/) (2021-04-11) +Adds support for multiple relative markers for the same test. + ### New features - added support for more than one relative marker for the same test diff --git a/pytest_order/__init__.py b/pytest_order/__init__.py index 2c2b3e3..ae6db5f 100644 --- a/pytest_order/__init__.py +++ b/pytest_order/__init__.py @@ -1 +1 @@ -__version__ = "1.0.dev0" +__version__ = "0.11.0" diff --git a/tests/test_misc.py b/tests/test_misc.py index bab7a9b..40682bc 100644 --- a/tests/test_misc.py +++ b/tests/test_misc.py @@ -12,7 +12,7 @@ def test_version_exists(): def test_version_valid(): # check for PEP 440 conform version - assert re.match(r"\d+(\.\d)*((a|b|rc)\d+)?(\.post\d)?(\.dev\d)$", + assert re.match(r"\d+(\.\d+)*((a|b|rc)\d+)?(\.post\d)?(\.dev\d)?$", pytest_order.__version__)