From 7c8a56796631506710cedf76adf17695869a8767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Fri, 9 Oct 2020 08:07:35 +0200 Subject: [PATCH 1/3] bump to 0.22.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index df9cc4969..6f3578cb2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jupyterlab/git", - "version": "0.22.0", + "version": "0.22.1", "description": "A JupyterLab extension for version control using git", "main": "lib/index.js", "types": "lib/index.d.ts", From 421919b167348b2cb2e88e4e79f744ed4c87dad7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Fri, 9 Oct 2020 08:08:35 +0200 Subject: [PATCH 2/3] Bump to 0.22.1 --- jupyterlab_git/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterlab_git/_version.py b/jupyterlab_git/_version.py index 1ed74a438..3bc365125 100644 --- a/jupyterlab_git/_version.py +++ b/jupyterlab_git/_version.py @@ -1,7 +1,7 @@ # Copyright (c) Project Jupyter. # Distributed under the terms of the Modified BSD License. -version_info = (0, 22, 0) +version_info = (0, 22, 1) flag = "" __version__ = ".".join(map(str, version_info)) + flag From 018c4d5a05a8035c66d86d183a2c3a092c034816 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Collonval?= Date: Fri, 9 Oct 2020 08:09:36 +0200 Subject: [PATCH 3/3] test against python 3.9 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 608bfa7dd..706acd266 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.6', '3.7', '3.8', '3.9.0-rc.1'] + python-version: ['3.6', '3.7', '3.8', '3.9'] steps: - name: Checkout uses: actions/checkout@v2