From 8a2caadda4dc10927753bf1c8ec6951a13cca3db Mon Sep 17 00:00:00 2001 From: Sylvain MARIE Date: Wed, 11 Oct 2023 14:44:24 +0200 Subject: [PATCH] Added changelog for 3.8. Ready to ship! --- docs/changelog.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index f60fb16d..9c9feffe 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,14 @@ # Changelog +### 3.8.0 - async, generators and strict-markers + + - `@fixture` and `@parametrize` are now async and generator aware. Fixes + [#286](https://github.com/smarie/python-pytest-cases/issues/286). PR + [#301](https://github.com/smarie/python-pytest-cases/pull/301) by [jgersti](https://github.com/jgersti). + - Fixed error with `pytest` `--strict-markers`. Fixes + [#283](https://github.com/smarie/python-pytest-cases/issues/283). PR + [#300](https://github.com/smarie/python-pytest-cases/pull/300) by [chrsmcgrr](https://github.com/chrsmcgrr). + ### 3.7.0 - python 3.12 - Added official support for Python 3.10, 3.11 and 3.12. Fixes [#314](https://github.com/smarie/python-pytest-cases/issues/314)