diff --git a/nbclassic/_version.py b/nbclassic/_version.py index f4951f767..1a595a5e5 100644 --- a/nbclassic/_version.py +++ b/nbclassic/_version.py @@ -5,7 +5,7 @@ import re # Version string must appear intact for tbump versioning -__version__ = '1.1.0.dev0' +__version__ = '1.1.0' # Build up version_info tuple for backwards compatibility pattern = r'(?P\d+).(?P\d+).(?P\d+)(?P.*)' diff --git a/nbclassic/static/base/js/namespace.js b/nbclassic/static/base/js/namespace.js index 9f3deb03d..d7b1ee816 100644 --- a/nbclassic/static/base/js/namespace.js +++ b/nbclassic/static/base/js/namespace.js @@ -73,7 +73,7 @@ define(function(){ // tree jglobal('SessionList','tree/js/sessionlist'); - Jupyter.version = "1.1.0.dev0"; + Jupyter.version = "1.1.0"; Jupyter._target = '_blank'; return Jupyter; diff --git a/pyproject.toml b/pyproject.toml index e9fc19a24..d13b8b410 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ post-version-spec = "dev" 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", "nbclassic/static/components/**/*.*"] [tool.tbump.version] -current = "1.1.0.dev0" +current = "1.1.0" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?