diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c0958cd..5b6d399 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0, 2, 2, 'final', 0 +current_version = (0, 2, 3, 'final', 0) commit = True tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \'(?P\S+)\'\,\ (?P\d+) @@ -23,4 +23,3 @@ replace = "version": "{new_version}" serialize = {major}.{minor}.{patch}-{release}.{build} {major}.{minor}.{patch} - diff --git a/js/package.json b/js/package.json index 829a0fd..1a74e2e 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab_celltests", - "version": "0.2.2", + "version": "0.2.3", "description": "A JupyterLab extension for cell-by-cell testing and linting of notebooks.", "author": "The nbcelltests authors", "main": "lib/index.js", diff --git a/nbcelltests/_version.py b/nbcelltests/_version.py index 4fcb309..ae3220b 100644 --- a/nbcelltests/_version.py +++ b/nbcelltests/_version.py @@ -12,7 +12,7 @@ ]) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(0, 2, 2, 'final', 0) +version_info = VersionInfo(0, 2, 3, 'final', 0) _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}