diff --git a/.cz.toml b/.cz.toml index cdc62ddc..42f31536 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,7 +1,7 @@ [tool.commitizen] name = "cz_conventional_commits" tag_format = "$major.$minor.$patch$prerelease" -version = "2.14.4" +version = "2.14.5" version_files = [ "naas/__init__.py", "naas/runner/runner.py", diff --git a/CHANGELOG.md b/CHANGELOG.md index 50bb0ca3..8922de9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.14.5 (2024-03-18) + +### Fix + +- test + ## 2.14.4 (2024-03-18) ### Fix diff --git a/Dockerfile b/Dockerfile index ec0541a9..05181861 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ FROM jupyternaas/singleuser:2.12.0 # Build-time metadata as defined at http://label-schema.org ARG BUILD_DATE ARG VCS_REF -ENV NAAS_VERSION 2.14.4 +ENV NAAS_VERSION 2.14.5 ENV JUPYTER_ENABLE_LAB 'yes' ENV NB_UMASK=022 ENV NB_USER=ftp diff --git a/naas/__init__.py b/naas/__init__.py index c1d7fdba..fc24e982 100644 --- a/naas/__init__.py +++ b/naas/__init__.py @@ -19,7 +19,7 @@ import os import sys -__version__ = "2.14.4" +__version__ = "2.14.5" __github_repo = "jupyter-naas/naas" __doc_url = "https://naas.gitbook.io/naas/" __canny_js = '' # noqa: E501 diff --git a/naas/runner/runner.py b/naas/runner/runner.py index 15eae240..12f6386f 100644 --- a/naas/runner/runner.py +++ b/naas/runner/runner.py @@ -50,7 +50,7 @@ asyncio.set_event_loop_policy(None) nest_asyncio.apply() -__version__ = "2.14.4" +__version__ = "2.14.5" class Runner: diff --git a/setup.py b/setup.py index da6b3852..329c356a 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ ] setup( name="naas", - version="2.14.4", + version="2.14.5", author="Maxime Jublou", author_email="devops@cashstory.com", license="BSD",