Prepare 2.16.0 release.

This commit is contained in:
Florian Bruhin 2015-12-20 18:28:48 +01:00
parent 1abe75ccf3
commit 9bf74e893c
2 changed files with 7 additions and 1 deletions

View File

@ -1,6 +1,12 @@
Changelog
=========
2.16.0
------
- Fixed deprecation warnings with pytest 2.8 (The-Compiler)
- Fixed deprecation warnings with Python 3.5 (The-Compiler)
2.15.0
------

View File

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