diff --git a/docs/source/changelog.md b/docs/source/changelog.md index 03f19a0..eb7d81c 100644 --- a/docs/source/changelog.md +++ b/docs/source/changelog.md @@ -1,5 +1,18 @@ # Changelog +## v0.9.0 (2023-11-12) + +* ⬆️ Add support for Python 3.12 by @sphuber in https://github.com/chrisjsewell/pytest-notebook/pull/41 +* ⬆️ Drop Python 3.7 by @chrisjsewell in https://github.com/chrisjsewell/pytest-notebook/pull/55 + +## v0.8.1 (2022-11-21) + +* ⬆️ Add support for Python 3.10 and 3.11 by @sphuber in + +## v0.8.0 (2022-07-30) + +* 🐛 Coverage.py fix by @renefritze in + ## v0.7.0 (2022-01-17) 🔀 Merge: Update package (#20) diff --git a/pytest_notebook/__init__.py b/pytest_notebook/__init__.py index 29b3910..633aecb 100644 --- a/pytest_notebook/__init__.py +++ b/pytest_notebook/__init__.py @@ -1,2 +1,2 @@ """A pytest plugin for testing Jupyter Notebooks.""" -__version__ = "0.8.1" +__version__ = "0.9.0"