diff --git a/.cz.toml b/.cz.toml index 662b479c..d155ee8f 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.12.15" +version = "2.12.16" version_files = [ "naas/__init__.py", "naas/runner/runner.py", diff --git a/CHANGELOG.md b/CHANGELOG.md index e5d52e5b..84167a7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 2.12.16 (2023-12-11) + +### Fix + +- **dependency**: update naas_drivers 0.120.1 + ## 2.12.15 (2023-12-11) ### Fix diff --git a/Dockerfile b/Dockerfile index da763c36..a140e35a 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.12.15 +ENV NAAS_VERSION 2.12.16 ENV JUPYTER_ENABLE_LAB 'yes' ENV NB_UMASK=022 ENV NB_USER=ftp diff --git a/naas/__init__.py b/naas/__init__.py index 30dabcf8..876c8622 100644 --- a/naas/__init__.py +++ b/naas/__init__.py @@ -19,7 +19,7 @@ import os import sys -__version__ = "2.12.15" +__version__ = "2.12.16" __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 7bccd904..18ad8394 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.12.15" +__version__ = "2.12.16" class Runner: diff --git a/setup.py b/setup.py index 45f2ebca..5f3d677d 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ ] setup( name="naas", - version="2.12.15", + version="2.12.16", author="Maxime Jublou", author_email="devops@cashstory.com", license="BSD",