diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 471078618..411cb2083 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0, 2, 12, "final", 0 +current_version = 0, 2, 13, "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 33be2402e..164f6ac78 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.4", + "version": "2.0.5", "description": "A JupyterLab preview extension for Voilà", "keywords": [ "jupyter", diff --git a/packages/voila/package.json b/packages/voila/package.json index acb6d3c48..47e488691 100644 --- a/packages/voila/package.json +++ b/packages/voila/package.json @@ -1,7 +1,7 @@ { "name": "@voila-dashboards/voila", "private": true, - "version": "0.2.12", + "version": "0.2.13", "description": "The Voilà Frontend", "author": "Voilà contributors", "license": "BSD-3-Clause", diff --git a/voila/_version.py b/voila/_version.py index 4daf44099..c0611302a 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, 12, "final", 0) +version_info = VersionInfo(0, 2, 13, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}