From d9badedacd9dc23872098cd146f24b0e1bd508c5 Mon Sep 17 00:00:00 2001 From: victor Date: Fri, 24 Oct 2025 23:26:13 +0800 Subject: [PATCH] bump version to 3.7.0 --- .bumpversion.toml | 2 +- chdb/__init__.py | 2 +- docs/conf.py | 2 +- docs/installation.rst | 2 +- docs/troubleshooting.rst | 2 +- pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index a6b2bea9a76..6cd7f90a5fe 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "3.7.1" +current_version = "3.7.0" commit = true tag = false tag_name = "v{new_version}" diff --git a/chdb/__init__.py b/chdb/__init__.py index b85602cf9e2..0094323643e 100644 --- a/chdb/__init__.py +++ b/chdb/__init__.py @@ -50,7 +50,7 @@ class ChdbError(Exception): # UDF script path will be f"{g_udf_path}/{func_name}.py" g_udf_path = "" -__version__ = "3.7.1" +__version__ = "3.7.0" if sys.version_info[:2] >= (3, 7): # get the path of the current file current_path = os.path.dirname(os.path.abspath(__file__)) diff --git a/docs/conf.py b/docs/conf.py index 7863a8ad55d..27c4516b3e2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,7 +45,7 @@ if chdb and hasattr(chdb, '__version__'): version = release = chdb.__version__ else: - version = release = '3.7.1' + version = release = '3.7.0' github_repo_url = 'https://github.com/chdb-io/chdb' diff --git a/docs/installation.rst b/docs/installation.rst index a17580b3d9c..74eaeaa87b6 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -89,7 +89,7 @@ You should see output similar to: message chDB is working! - chDB version: 3.7.1 + chDB version: 3.7.0 ClickHouse engine: 25.5.2.1 Troubleshooting diff --git a/docs/troubleshooting.rst b/docs/troubleshooting.rst index fc9f942e86e..fe561101dbf 100644 --- a/docs/troubleshooting.rst +++ b/docs/troubleshooting.rst @@ -40,7 +40,7 @@ If you encounter import errors: pip install --force-reinstall chdb # Install specific version - pip install chdb==3.7.1 + pip install chdb==3.7.0 **Check installation:** diff --git a/pyproject.toml b/pyproject.toml index f2f2cf04fed..cd6fb0535e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "chdb" requires-python = ">=3.8" -version = "3.7.1" +version = "3.7.0" description = "chDB is an in-process OLAP SQL Engine powered by ClickHouse" readme = "README.md" license = {text = "Apache-2.0"}