diff --git a/CHANGELOG.md b/CHANGELOG.md index 5296172..f3f02ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## Changelog +### `0.3.2` + +- [#21](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/21) Get back to previous fragment when using shift+space +- [#23](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/23) Fix CSS for Jupyterlab>4.1 and Notebook +- [#24](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/24) Use toolbar registry for the deck button and move it to the right +- [#22](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/22) Prevent dependabot from using yarn 4 +- [#1](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/1) Bump ws from 8.15.0 to 8.18.0 +- [#3](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/3) Bump ejs from 3.1.9 to 3.1.10 +- [#8](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/8) Bump braces from 3.0.2 to 3.0.3 +- [#14](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/14) Bump follow-redirects from 1.15.3 to 1.15.9 + ### `0.3.1` - [#16](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/16) Rename npm package diff --git a/dodo.py b/dodo.py index 778d2dd..1ee0579 100644 --- a/dodo.py +++ b/dodo.py @@ -24,8 +24,8 @@ class C: NPM_NAME = "jupyterlab-slideshow" - OLD_VERSION = "0.3.0" - VERSION = "0.3.1" + OLD_VERSION = "0.3.1" + VERSION = "0.3.2" JS_VERSION = ( VERSION.replace("a", "-alpha.").replace("b", "-beta.").replace("rc", "-rc.") ) diff --git a/js/jupyterlab-slideshow/package.json b/js/jupyterlab-slideshow/package.json index c5463d0..f58b7c4 100644 --- a/js/jupyterlab-slideshow/package.json +++ b/js/jupyterlab-slideshow/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-slideshow", - "version": "0.3.1", + "version": "0.3.2", "description": "Lightweight presentations for JupyterLab", "license": "BSD-3-Clause", "author": { diff --git a/pyproject.toml b/pyproject.toml index 1f79cba..b8b1664 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "jupyterlab-slideshow" -version = "0.3.1" +version = "0.3.2" readme = "README.md" classifiers = [ "Framework :: Jupyter :: JupyterLab :: 3",