diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 85036c294..354e00193 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0, 2, 15, "final", 0 +current_version = 0, 2, 16, "final", 0 commit = False tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \"(?P\S+)\"\,\ (?P\d+) diff --git a/packages/jupyterlab-preview/package.json b/packages/jupyterlab-preview/package.json index b78ac3349..c63617ada 100644 --- a/packages/jupyterlab-preview/package.json +++ b/packages/jupyterlab-preview/package.json @@ -1,6 +1,6 @@ { "name": "@voila-dashboards/jupyterlab-preview", - "version": "2.0.6", + "version": "2.0.7", "description": "A JupyterLab preview extension for Voilà", "keywords": [ "jupyter", diff --git a/packages/voila/package.json b/packages/voila/package.json index 1de581fa9..cee9ac6dc 100644 --- a/packages/voila/package.json +++ b/packages/voila/package.json @@ -1,7 +1,7 @@ { "name": "@voila-dashboards/voila", "private": true, - "version": "0.2.15", + "version": "0.2.16", "description": "The Voilà Frontend", "author": "Voilà contributors", "license": "BSD-3-Clause", diff --git a/voila/_version.py b/voila/_version.py index c05339f7d..32478f697 100644 --- a/voila/_version.py +++ b/voila/_version.py @@ -17,7 +17,7 @@ ) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(0, 2, 15, "final", 0) +version_info = VersionInfo(0, 2, 16, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}