Skip to content

Commit e626718

Browse files
committed
Update changelog and versions
1 parent 402f215 commit e626718

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
## Changelog
22

3+
### `0.3.0`
4+
5+
- [#9](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/9) Fix CI installation
6+
- [#10](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/10) Fix navigation if previous is subslide
7+
- [#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
8+
- [#12](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/12) Optionally shows the code cell prompt (execution count)
9+
- [#13](https://github.com/jupyterlab-contrib/jupyterlab-slideshow/pull/13) Jupyterlab>4.1
10+
311
### `0.2.1`
412

513
- > TBD

dodo.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
class C:
2626
NPM_NAME = "@jupyterlab/slideshow"
27-
OLD_VERSION = "0.2.0"
28-
VERSION = "0.2.1"
27+
OLD_VERSION = "0.2.1"
28+
VERSION = "0.3.0"
2929
JS_VERSION = (
3030
VERSION.replace("a", "-alpha.").replace("b", "-beta.").replace("rc", "-rc.")
3131
)

js/jupyterlab-slideshow/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/slideshow",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Lightweight presentations for JupyterLab",
55
"license": "BSD-3-Clause",
66
"author": {

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "jupyterlab-slideshow"
7-
version = "0.2.1"
7+
version = "0.3.0"
88
readme = "README.md"
99
classifiers = [
1010
"Framework :: Jupyter :: JupyterLab :: 3",

0 commit comments

Comments
 (0)