Skip to content

Commit

Permalink
Release 6.4.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Jun 7, 2022
1 parent a161ffa commit aee4535
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions notebook/_version.py
Expand Up @@ -5,14 +5,14 @@
import re

# Version string must appear intact for tbump versioning
__version__ = '6.4.12.dev0'
__version__ = '6.4.12'

# Build up version_info tuple for backwards compatibility
pattern = r'(?P<major>\d+).(?P<minor>\d+).(?P<patch>\d+)(?P<rest>.*)'
match = re.match(pattern, __version__)
parts = [int(match[part]) for part in ['major', 'minor', 'patch']]
if match['rest']:
parts.append(match['rest'])
parts.append(match['rest'])
version_info = tuple(parts)

# Downstream maintainer, when running `python.setup.py jsversion`,
Expand Down
2 changes: 1 addition & 1 deletion notebook/static/base/js/namespace.js
Expand Up @@ -73,7 +73,7 @@ define(function(){
// tree
jglobal('SessionList','tree/js/sessionlist');

Jupyter.version = "6.4.11";
Jupyter.version = "6.4.12";
Jupyter._target = '_blank';

return Jupyter;
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -17,7 +17,7 @@ before-build-python = ["pip install babel", "npm install -g po2json"]
ignore-glob = ["docs/source/examples/Notebook/Working With Markdown Cells.ipynb", "docs-translations/**/README.md", "docs/source/contributing.rst", "docs/source/examples/Notebook/JavaScript Notebook Extensions.ipynb", "CHANGELOG.md", "notebook/static/components/**/*.*"]

[tool.tbump.version]
current = "6.4.11"
current = "6.4.12"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
Expand Down

0 comments on commit aee4535

Please sign in to comment.