Steven Silvester пре 5 година
родитељ
комит
2be9711803
3 измењених фајлова са 45 додато и 45 уклоњено
  1. 19 19
      .bumpversion.cfg
  2. 1 1
      dev_mode/package.json
  3. 25 25
      jupyterlab/_version.py

+ 19 - 19
.bumpversion.cfg

@@ -1,19 +1,19 @@
-[bumpversion]
-current_version = 1, 0, 0, 'candidate', 0
-commit = False
-tag = False
-parse = (?P<major>\d+)\,\ (?P<minor>\d+)\,\ (?P<patch>\d+)\,\ \'(?P<release>\S+)\'\,\ (?P<build>\d+)
-serialize = 
-	{major}, {minor}, {patch}, '{release}', {build}
-
-[bumpversion:part:release]
-optional_value = final
-values = 
-	alpha
-	candidate
-	final
-
-[bumpversion:part:build]
-
-[bumpversion:file:jupyterlab/_version.py]
-
+[bumpversion]
+current_version = 1, 0, 0, 'candidate', 1
+commit = False
+tag = False
+parse = (?P<major>\d+)\,\ (?P<minor>\d+)\,\ (?P<patch>\d+)\,\ \'(?P<release>\S+)\'\,\ (?P<build>\d+)
+serialize = 
+	{major}, {minor}, {patch}, '{release}', {build}
+
+[bumpversion:part:release]
+optional_value = final
+values = 
+	alpha
+	candidate
+	final
+
+[bumpversion:part:build]
+
+[bumpversion:file:jupyterlab/_version.py]
+

+ 1 - 1
dev_mode/package.json

@@ -117,7 +117,7 @@
   },
   "jupyterlab": {
     "name": "JupyterLab",
-    "version": "1.0.0rc0",
+    "version": "1.0.0rc1",
     "extensions": {
       "@jupyterlab/application-extension": "",
       "@jupyterlab/apputils-extension": "",

+ 25 - 25
jupyterlab/_version.py

@@ -1,25 +1,25 @@
-# Copyright (c) Jupyter Development Team.
-# Distributed under the terms of the Modified BSD License.
-
-from collections import namedtuple
-
-VersionInfo = namedtuple('VersionInfo', [
-    'major',
-    'minor',
-    'micro',
-    'releaselevel',
-    'serial'
-])
-
-# DO NOT EDIT THIS DIRECTLY!  It is managed by bumpversion
-version_info = VersionInfo(1, 0, 0, 'candidate', 0)
-
-_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
-
-__version__ = '{}.{}.{}{}'.format(
-    version_info.major,
-    version_info.minor,
-    version_info.micro,
-    (''
-     if version_info.releaselevel == 'final'
-else _specifier_[version_info.releaselevel] + str(version_info.serial)))
+# Copyright (c) Jupyter Development Team.
+# Distributed under the terms of the Modified BSD License.
+
+from collections import namedtuple
+
+VersionInfo = namedtuple('VersionInfo', [
+    'major',
+    'minor',
+    'micro',
+    'releaselevel',
+    'serial'
+])
+
+# DO NOT EDIT THIS DIRECTLY!  It is managed by bumpversion
+version_info = VersionInfo(1, 0, 0, 'candidate', 1)
+
+_specifier_ = {'alpha': 'a', 'beta': 'b', 'candidate': 'rc', 'final': ''}
+
+__version__ = '{}.{}.{}{}'.format(
+    version_info.major,
+    version_info.minor,
+    version_info.micro,
+    (''
+     if version_info.releaselevel == 'final'
+else _specifier_[version_info.releaselevel] + str(version_info.serial)))