From aee45355b568650cf650f4e2d3d551570655f844 Mon Sep 17 00:00:00 2001 From: Zach Sailer Date: Tue, 7 Jun 2022 09:39:37 -0700 Subject: [PATCH] Release 6.4.12 --- notebook/_version.py | 4 ++-- notebook/static/base/js/namespace.js | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/notebook/_version.py b/notebook/_version.py index 678319de40..a8af5c2a9a 100644 --- a/notebook/_version.py +++ b/notebook/_version.py @@ -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\d+).(?P\d+).(?P\d+)(?P.*)' 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`, diff --git a/notebook/static/base/js/namespace.js b/notebook/static/base/js/namespace.js index 24b2ac02e4..2ce4ad3671 100644 --- a/notebook/static/base/js/namespace.js +++ b/notebook/static/base/js/namespace.js @@ -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; diff --git a/pyproject.toml b/pyproject.toml index 184a297c79..2c9b0be541 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?