diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 97b8c6a..25db84d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0, 2, 1, 'alpha', 3 +current_version = 0, 2, 1, 'final', 0 commit = True tag = False parse = (?P\d+)\,\ (?P\d+)\,\ (?P\d+)\,\ \'(?P\S+)\'\,\ (?P\d+) diff --git a/js/package.json b/js/package.json index 4443332..0163dfb 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab_celltests", - "version": "0.2.1-alpha.3", + "version": "0.2.1", "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 1900396..04a4c71 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, 1, 'alpha', 3) +version_info = VersionInfo(0, 2, 1, 'final', 0) _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}