Browse Source

bump version

Jason Grout 4 years ago
parent
commit
dfb4eeda40
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 = 3, 0, 0, 'candidate', 8
+current_version = 3, 0, 0, 'candidate', 9
 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

@@ -197,7 +197,7 @@
   },
   "jupyterlab": {
     "name": "JupyterLab",
-    "version": "3.0.0rc8",
+    "version": "3.0.0rc9",
     "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(3, 0, 0, 'candidate', 8)
+version_info = VersionInfo(3, 0, 0, 'candidate', 9)
 
 _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}