This commit is contained in:
Alessio Bogon 2020-06-04 17:06:05 +02:00
parent 62f2d9d1aa
commit be94d2e55a
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,12 @@
Changelog
=========
3.4.0
-----
- Parse multiline steps according to the gherkin specification #365.
3.3.0
-----

View File

@ -3,6 +3,6 @@
from pytest_bdd.steps import given, when, then
from pytest_bdd.scenario import scenario, scenarios
__version__ = "3.3.0"
__version__ = "3.4.0"
__all__ = [given.__name__, when.__name__, then.__name__, scenario.__name__, scenarios.__name__]