diff --git a/docs/source/changelog.md b/docs/source/changelog.md index 48484f4e..0725fd75 100644 --- a/docs/source/changelog.md +++ b/docs/source/changelog.md @@ -1,5 +1,19 @@ # Changes in nbdime +## 3.2 + +### 3.2.1 - 2023-04 + +- Fixed incorrect exit code submission when succesfully closing web tools. + +### 3.2.0 - 2023-04 + +- Jupyter server 2.0 support +- Removed ipython_genutils code. +- Make INFO text more readable in dark terminal +- Compatible with asynchronous contentsmanager +- Update cell marker format to use bold correctly + ## 3.1 ### 3.1.0 - 2021-05 diff --git a/nbdime/_version.py b/nbdime/_version.py index 80538baa..0eadce89 100644 --- a/nbdime/_version.py +++ b/nbdime/_version.py @@ -1,2 +1,2 @@ -version_info = (3, 2, 1, "dev") +version_info = (3, 2, 1) __version__ = ".".join(map(str, version_info))