Browse Source

bump version

Saul Shanabrook 5 years ago
parent
commit
b7e30bc29e
3 changed files with 3 additions and 3 deletions
  1. 1 1
      .bumpversion.cfg
  2. 1 1
      dev_mode/package.json
  3. 1 1
      jupyterlab/_version.py

+ 1 - 1
.bumpversion.cfg

@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 2, 1, 0, 'candidate', 0
+current_version = 2, 1, 0, 'final', 0
 commit = False
 tag = False
 parse = (?P<major>\d+)\,\ (?P<minor>\d+)\,\ (?P<patch>\d+)\,\ \'(?P<release>\S+)\'\,\ (?P<build>\d+)

+ 1 - 1
dev_mode/package.json

@@ -188,7 +188,7 @@
   },
   "jupyterlab": {
     "name": "JupyterLab",
-    "version": "2.1.0rc0",
+    "version": "2.1.0",
     "extensions": {
       "@jupyterlab/application-extension": "",
       "@jupyterlab/apputils-extension": "",

+ 1 - 1
jupyterlab/_version.py

@@ -12,7 +12,7 @@ VersionInfo = namedtuple('VersionInfo', [
 ])
 
 # DO NOT EDIT THIS DIRECTLY!  It is managed by bumpversion
-version_info = VersionInfo(2, 1, 0, 'candidate', 0)
+version_info = VersionInfo(2, 1, 0, 'final', 0)
 
 _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}