Skip to content

Commit

Permalink
Bump version: 5.2.0 → 5.3.0beta0
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Apr 4, 2022
1 parent 8ef81ed commit 3ba1cec
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[bumpversion]
current_version = 5.2.0
current_version = 5.3.0beta0
commit = True
message = Bump version: {current_version} → {new_version}
tag = False
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = prod
first_value = beta
values =
values =
beta
prod

[bumpversion:part:build]

[bumpversion:file:nbformat/_version.py]
parse = (?P<major>\d+),\s*(?P<minor>\d+),\s*(?P<patch>\d+)(,\s*['"](?P<release>[a-z]+)(?P<build>\d+)['"])?
serialize =
serialize =
{major}, {minor}, {patch}, "{release}{build}"
{major}, {minor}, {patch}
Expand All @@ -32,6 +32,6 @@ replace = version = '{new_version}'
[bumpversion:file:package.json]
parse = (?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(-(?P<release>[a-z]+)\.(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}.{build}
{major}.{minor}.{patch}
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# built documents.
#
# The short X.Y version.
version = "5.2"
version = '5.3'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion nbformat/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Make sure to update package.json, too!
version_info = (5, 2, 0)
version_info = (5, 3, 0, "beta0")
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nbformat-schema",
"version": "5.2.0",
"version": "5.3.0-beta.0",
"description": "JSON schemata for Jupyter notebook formats",
"main": "index.js",
"files": [
Expand Down

0 comments on commit 3ba1cec

Please sign in to comment.