diff --git a/.cz.toml b/.cz.toml index b525dcf0..f3f7e41d 100644 --- a/.cz.toml +++ b/.cz.toml @@ -1,6 +1,6 @@ [tool.commitizen] name = "cz_conventional_commits" -version = "0.121.0" +version = "0.121.1" tag_format = "$major.$minor.$patch$prerelease" version_files = [ "naas_drivers/__init__.py", diff --git a/CHANGELOG.md b/CHANGELOG.md index 901019fd..72e25bb0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 0.121.1 (2024-03-14) + +### Fix + +- get conversations not working for more than 20 + ## 0.121.0 (2024-01-15) ### Feat diff --git a/naas_drivers/__init__.py b/naas_drivers/__init__.py index c27f4827..09996121 100644 --- a/naas_drivers/__init__.py +++ b/naas_drivers/__init__.py @@ -4,7 +4,7 @@ from subprocess import Popen, PIPE import sys -__version__ = "0.121.0" +__version__ = "0.121.1" __github_repo = "jupyter-naas/drivers" diff --git a/setup.py b/setup.py index 01e66894..16502afd 100644 --- a/setup.py +++ b/setup.py @@ -140,7 +140,7 @@ setup( name="naas-drivers", - version="0.121.0", + version="0.121.1", author="Maxime Jublou", author_email="maxime@naas.ai", license="BSD",