Preparing the release 3.3.0

This commit is contained in:
Oleg Pidsadnyi 2020-04-22 22:00:25 +02:00
parent 65873276d3
commit 34bc88572b
2 changed files with 5 additions and 4 deletions

View File

@ -1,14 +1,15 @@
Changelog Changelog
========= =========
Unreleased 3.3.0
---------- -----
- Drop support for pytest < 4.3. - Drop support for pytest < 4.3.
- Fix a Python 4.0 bug. - Fix a Python 4.0 bug.
- Fix ``pytest --generate-missing`` functionality being broken. - Fix ``pytest --generate-missing`` functionality being broken.
- Fix problematic missing step definition from strings containing quotes. - 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 3.2.1
---------- ----------

View File

@ -3,6 +3,6 @@
from pytest_bdd.steps import given, when, then from pytest_bdd.steps import given, when, then
from pytest_bdd.scenario import scenario, scenarios 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__] __all__ = [given.__name__, when.__name__, then.__name__, scenario.__name__, scenarios.__name__]