diff --git a/packages/gridstack-editor/package.json b/packages/gridstack-editor/package.json index 4a0bbd5..f5a8b05 100644 --- a/packages/gridstack-editor/package.json +++ b/packages/gridstack-editor/package.json @@ -1,6 +1,6 @@ { "name": "@voila-dashboards/gridstack-editor", - "version": "0.3.0-alpha.0", + "version": "0.3.0-alpha.1", "private": true, "files": [ "lib/**/*.{d.ts,js.map,js}", diff --git a/packages/jupyterlab-gridstack/package.json b/packages/jupyterlab-gridstack/package.json index 05a31d4..acf88b0 100644 --- a/packages/jupyterlab-gridstack/package.json +++ b/packages/jupyterlab-gridstack/package.json @@ -1,6 +1,6 @@ { "name": "@voila-dashboards/jupyterlab-gridstack", - "version": "0.3.0-alpha.0", + "version": "0.3.0-alpha.1", "description": "A JupyterLab extension to create Voila dashboards using GridStack", "homepage": "https://github.com/voila-dashboards/voila-gridstack", "repository": { diff --git a/pyproject.toml b/pyproject.toml index 99dd1b5..4d02b31 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ build_cmd = "build:prod" npm = ["jlpm"] [tool.tbump.version] -current = "0.3.0a0" +current = "0.3.0a1" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))? diff --git a/voila_gridstack/__init__.py b/voila_gridstack/__init__.py index 3da20d0..ae46f38 100644 --- a/voila_gridstack/__init__.py +++ b/voila_gridstack/__init__.py @@ -11,7 +11,7 @@ import os.path as osp from .server_extension import load_jupyter_server_extension # noqa -__version__ = "0.3.0a0" +__version__ = "0.3.0a1" HERE = osp.abspath(osp.dirname(__file__))