From 70a03275a76835ec662129cdd817b83e7d57d3f3 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Thu, 7 Jan 2021 23:30:30 -0500 Subject: [PATCH 1/2] ignore flake styling --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 19a8213..92b8ab0 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,6 +6,7 @@ description_file = README.md long_description_content_type=text/markdown [flake8] +ignore=E203, W503 max-line-length=200 [manifix] From 74081d75f3d462e5becc8677b7b8b53b4ec84515 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Thu, 7 Jan 2021 23:30:45 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version:=20(0,=202,=205,=20"final",?= =?UTF-8?q?=200)=20=E2=86=92=20(0,=203,=200,=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 +- jupyterlab_templates/_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 196bd39..a06050f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = (0, 2, 5, "final", 0) +current_version = (0, 3, 0, "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 5bcf4f8..79083b7 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "jupyterlab_templates", - "version": "0.2.5", + "version": "0.3.0", "description": "Notebook templates", "author": "the jupyterlab_templates authors", "main": "lib/index.js", diff --git a/jupyterlab_templates/_version.py b/jupyterlab_templates/_version.py index 49cc8d1..1730f90 100644 --- a/jupyterlab_templates/_version.py +++ b/jupyterlab_templates/_version.py @@ -8,7 +8,7 @@ ) # DO NOT EDIT THIS DIRECTLY! It is managed by bumpversion -version_info = VersionInfo(0, 2, 5, "final", 0) +version_info = VersionInfo(0, 3, 0, "final", 0) _specifier_ = {"alpha": "a", "beta": "b", "candidate": "rc", "final": ""}