From 10f59bfbaed38fac5067c8e285d7eaf2e921aab6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 20 Jul 2023 17:18:08 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=202.11.2=20=E2=86=92=202.11.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.toml | 2 +- CHANGELOG.md | 10 ++++++++++ Dockerfile | 2 +- naas/__init__.py | 2 +- naas/runner/runner.py | 2 +- setup.py | 2 +- 6 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.cz.toml b/.cz.toml index 722ad5eb..51ba701c 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.11.2" +version = "2.11.3" version_files = [ "naas/__init__.py", "naas/runner/runner.py", diff --git a/CHANGELOG.md b/CHANGELOG.md index e726851e..68afa41a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 2.11.3 (2023-07-20) + +### Fix + +- Applied linters +- Rework based on workspace arrival +- Remove links at the top and update the account button +- Remove usage and credits +- Remove templates tab + ## 2.11.2 (2023-07-05) ### Fix diff --git a/Dockerfile b/Dockerfile index afdf3a1c..47682ca9 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.11.2 +ENV NAAS_VERSION 2.11.3 ENV JUPYTER_ENABLE_LAB 'yes' ENV NB_UMASK=022 ENV NB_USER=ftp diff --git a/naas/__init__.py b/naas/__init__.py index c44eb061..bde0c8c1 100644 --- a/naas/__init__.py +++ b/naas/__init__.py @@ -19,7 +19,7 @@ import os import sys -__version__ = "2.11.2" +__version__ = "2.11.3" __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 2d15d6c9..2d617fea 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.11.2" +__version__ = "2.11.3" class Runner: diff --git a/setup.py b/setup.py index 8026eb9f..a9a7ab32 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ ] setup( name="naas", - version="2.11.2", + version="2.11.3", author="Maxime Jublou", author_email="devops@cashstory.com", license="BSD",