From f85d38c0476f7aa79c6818b1d7f62c34a79ba8de Mon Sep 17 00:00:00 2001 From: Nicolas Brichet Date: Fri, 25 Apr 2025 12:02:14 +0200 Subject: [PATCH] Bump version to 0.3.3 --- CHANGELOG.md | 8 ++++++++ dodo.py | 4 ++-- js/jupyterlab-slideshow/package.json | 2 +- pyproject.toml | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3f02ea..d3659fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Changelog +### `0.3.3` + +- [#28](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/28) Bump serialize-javascript from 6.0.1 to 6.0.2 +- [#33](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/33) Update github actions +- [#30](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/30) Bump axios from 1.6.2 to 1.8.4 +- [#32](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/32) Bump @babel/runtime from 7.23.6 to 7.27.0 +- [#31](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/31) Allow stopping presentation with escape key + ### `0.3.2` - [#21](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/21) Get back to previous fragment when using shift+space diff --git a/dodo.py b/dodo.py index 1ee0579..f4e02cd 100644 --- a/dodo.py +++ b/dodo.py @@ -24,8 +24,8 @@ class C: NPM_NAME = "jupyterlab-slideshow" - OLD_VERSION = "0.3.1" - VERSION = "0.3.2" + OLD_VERSION = "0.3.2" + VERSION = "0.3.3" 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 f58b7c4..b11758c 100644 --- a/js/jupyterlab-slideshow/package.json +++ b/js/jupyterlab-slideshow/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab-slideshow", - "version": "0.3.2", + "version": "0.3.3", "description": "Lightweight presentations for JupyterLab", "license": "BSD-3-Clause", "author": { diff --git a/pyproject.toml b/pyproject.toml index b8b1664..7227f53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "jupyterlab-slideshow" -version = "0.3.2" +version = "0.3.3" readme = "README.md" classifiers = [ "Framework :: Jupyter :: JupyterLab :: 3",