6.1.0 release

This commit is contained in:
Alessio Bogon 2022-11-05 15:17:23 +01:00
parent 1d84d291d9
commit e5f2134507
2 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,9 @@ Changelog
Unreleased
----------
6.1.0
-----
- Fix bug where steps without parsers would take precedence over steps with parsers. `#534 <https://github.com/pytest-dev/pytest-bdd/pull/534>`_
- Step functions can now be decorated multiple times with @given, @when, @then. Previously every decorator would override ``converters`` and ``target_fixture`` every at every application. `#534 <https://github.com/pytest-dev/pytest-bdd/pull/534>`_ `#544 <https://github.com/pytest-dev/pytest-bdd/pull/544>`_ `#525 <https://github.com/pytest-dev/pytest-bdd/issues/525>`_
- Require pytest>=6.2 `#534 <https://github.com/pytest-dev/pytest-bdd/pull/534>`_

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-bdd"
version = "6.0.1"
version = "6.1.0"
description = "BDD for pytest"
authors = ["Oleg Pidsadnyi <oleg.pidsadnyi@gmail.com>", "Anatoly Bubenkov <bubenkoff@gmail.com>"]
maintainers = ["Alessio Bogon <778703+youtux@users.noreply.github.com>"]