diff --git a/CHANGES.rst b/CHANGES.rst index e6195da..52fe6ca 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,14 +1,15 @@ Changelog ========= -Unreleased ----------- +3.3.0 +----- - Drop support for pytest < 4.3. - Fix a Python 4.0 bug. - Fix ``pytest --generate-missing`` functionality being broken. - Fix problematic missing step definition from strings containing quotes. -- Implement parsing escaped pipe characters in outline parameters #337. +- Implement parsing escaped pipe characters in outline parameters (Mark90) #337. +- Disable the strict Gherkin validation in the steps generation (v-buriak) #356. 3.2.1 ---------- diff --git a/pytest_bdd/__init__.py b/pytest_bdd/__init__.py index 9d8cd62..2fb0b1e 100644 --- a/pytest_bdd/__init__.py +++ b/pytest_bdd/__init__.py @@ -3,6 +3,6 @@ from pytest_bdd.steps import given, when, then from pytest_bdd.scenario import scenario, scenarios -__version__ = "3.2.1" +__version__ = "3.3.0" __all__ = [given.__name__, when.__name__, then.__name__, scenario.__name__, scenarios.__name__]