From 8387c2e52602ea952967878d053d5649e7f5d6ff Mon Sep 17 00:00:00 2001 From: Chris B Date: Mon, 15 Jun 2020 16:53:58 +0100 Subject: [PATCH 1/2] Fixed missing command. --- MANIFEST.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index bdfcb52..d3479b7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -6,7 +6,7 @@ include LICENSE include CONTRIBUTING.md # inclusion in sdist varies somewhat between python tools -pyproject.toml +include pyproject.toml # test data include nbcelltests/tests/*.ipynb From 5cb3bdab33f67a9cc8c0f15b4c64652a1cb81835 Mon Sep 17 00:00:00 2001 From: Chris B Date: Mon, 15 Jun 2020 17:25:42 +0100 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=200,=202,=201,=20'alpha',?= =?UTF-8?q?=202=20=E2=86=92=200,=202,=201,=20'alpha',=203?= 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 47588e4..97b8c6a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0, 2, 1, 'alpha', 2 +current_version = 0, 2, 1, 'alpha', 3 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 426b349..4443332 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab_celltests", - "version": "0.2.1-alpha.2", + "version": "0.2.1-alpha.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 7c81e37..1900396 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', 2) +version_info = VersionInfo(0, 2, 1, 'alpha', 3) _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}