prepare 2.18.1 release

This commit is contained in:
Anatoly Bubenkov 2016-11-05 11:28:59 +01:00
parent 32b8a82882
commit f48e4558c0
3 changed files with 7 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Authors
These people have contributed to `pytest-bdd`, in alphabetical order:
* `Adam Coddington <me@adamcoddington.net>`_
* `Albert-Jan Nijburg <albertjan@curit.com>`_
* `Andrey Makhnach <andrey.makhnach@gmail.com>`_
* `Aron Curzon <curzona@gmail.com>`_

View File

@ -1,6 +1,11 @@
Changelog
=========
2.18.1
------
- Relay fixture results to recursive call of 'get_features' (coddingtonbear)
2.18.0
------

View File

@ -3,6 +3,6 @@
from pytest_bdd.steps import given, when, then
from pytest_bdd.scenario import scenario, scenarios
__version__ = '2.18.0'
__version__ = '2.18.1'
__all__ = [given.__name__, when.__name__, then.__name__, scenario.__name__, scenarios.__name__]