From 3e8474f0d1bdebc2ca3774698de5d2c340f4c991 Mon Sep 17 00:00:00 2001 From: Chris B Date: Mon, 15 Jun 2020 18:58:30 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200,=202,=201,=20'alpha',=203?= =?UTF-8?q?=20=E2=86=92=200,=202,=201,=20'final',=200?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- js/package.json | 2 +- nbcelltests/_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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': ''}