Browse Source

bump version

Jason Grout 4 năm trước cách đây
mục cha
commit
4384e969e4
3 tập tin đã thay đổi với 3 bổ sung3 xóa
  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', 14
+current_version = 3, 0, 0, 'candidate', 15
 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.0rc14",
+    "version": "3.0.0rc15",
     "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', 14)
+version_info = VersionInfo(3, 0, 0, 'candidate', 15)
 
 _specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}