From e626718f52d7fd912d8d9fc3af1b9bb13efeaa0c Mon Sep 17 00:00:00 2001 From: Nicolas Brichet Date: Wed, 8 Jan 2025 16:21:40 +0100 Subject: [PATCH] Update changelog and versions --- 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 73c4d22..a8dba12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ ## Changelog +### `0.3.0` + +- [#9](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/9) Fix CI installation +- [#10](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/10) Fix navigation if previous is subslide +- [#11](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/11) Keep track of the last fragment or sub-slide displayed when moving back or forward +- [#12](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/12) Optionally shows the code cell prompt (execution count) +- [#13](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/13) Jupyterlab>4.1 + ### `0.2.1` - > TBD diff --git a/dodo.py b/dodo.py index 4abf2ef..06a8d99 100644 --- a/dodo.py +++ b/dodo.py @@ -24,8 +24,8 @@ class C: NPM_NAME = "@jupyterlab/slideshow" - OLD_VERSION = "0.2.0" - VERSION = "0.2.1" + OLD_VERSION = "0.2.1" + VERSION = "0.3.0" 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 ca4956b..0bc0386 100644 --- a/js/jupyterlab-slideshow/package.json +++ b/js/jupyterlab-slideshow/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/slideshow", - "version": "0.2.1", + "version": "0.3.0", "description": "Lightweight presentations for JupyterLab", "license": "BSD-3-Clause", "author": { diff --git a/pyproject.toml b/pyproject.toml index 4ac433f..7358a9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" [project] name = "jupyterlab-slideshow" -version = "0.2.1" +version = "0.3.0" readme = "README.md" classifiers = [ "Framework :: Jupyter :: JupyterLab :: 3",