diff --git a/docs/source/changelog.md b/docs/source/changelog.md index eb7d81c..ee54a3d 100644 --- a/docs/source/changelog.md +++ b/docs/source/changelog.md @@ -1,9 +1,13 @@ # Changelog +## v0.10.0 (2023-11-28) + +* ⬆️ Support nbdime v4 (drop v3 support) by @amotl and @krassowski in + ## 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 +* ⬆️ Add support for Python 3.12 by @sphuber in +* ⬆️ Drop Python 3.7 by @chrisjsewell in ## v0.8.1 (2022-11-21) diff --git a/pytest_notebook/__init__.py b/pytest_notebook/__init__.py index 633aecb..d456026 100644 --- a/pytest_notebook/__init__.py +++ b/pytest_notebook/__init__.py @@ -1,2 +1,2 @@ """A pytest plugin for testing Jupyter Notebooks.""" -__version__ = "0.9.0" +__version__ = "0.10.0"