Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "3.6.0"
current_version = "3.7.1"
commit = true
tag = false
tag_name = "v{new_version}"
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build_macos_arm64_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ jobs:
bash -x ./examples/runArrowTest.sh
- name: Build wheels
run: |
rm -rf chdb/build/
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
export PATH=$(brew --prefix llvm@19)/bin:$(brew --prefix lld@19)/bin:/usr/local/opt/grep/libexec/gnubin:/usr/local/opt/binutils/bin:$PATH:/usr/local/opt/findutils/libexec/gnubin
Expand All @@ -230,6 +231,10 @@ jobs:
eval "$(pyenv init -)"
pyenv shell 3.8
python -m wheel tags --platform-tag=macosx_11_0_arm64 --remove dist/*.whl
- name: Verify wheel sizes
run: |
echo "=== Wheel sizes ==="
du -sh dist/*
- name: Setup core dump
run: |
mkdir -p tmp/core
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/build_macos_x86_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ jobs:
bash -x ./examples/runArrowTest.sh
- name: Build wheels
run: |
rm -rf chdb/build/
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
source ~/.cargo/env
Expand All @@ -232,6 +233,10 @@ jobs:
eval "$(pyenv init -)"
pyenv shell 3.9
python -m wheel tags --platform-tag=macosx_10_15_x86_64 --remove dist/*.whl
- name: Verify wheel sizes
run: |
echo "=== Wheel sizes ==="
du -sh dist/*
- name: Setup core dump collection
run: |
mkdir -p tmp/core
Expand Down
2 changes: 1 addition & 1 deletion chdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ChdbError(Exception):
# UDF script path will be f"{g_udf_path}/{func_name}.py"
g_udf_path = ""

__version__ = "3.6.0"
__version__ = "3.7.1"
if sys.version_info[:2] >= (3, 7):
# get the path of the current file
current_path = os.path.dirname(os.path.abspath(__file__))
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
if chdb and hasattr(chdb, '__version__'):
version = release = chdb.__version__
else:
version = release = '3.6.0'
version = release = '3.7.1'

github_repo_url = 'https://github.com/chdb-io/chdb'

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ You should see output similar to:
message
chDB is working!

chDB version: 3.6.0
chDB version: 3.7.1
ClickHouse engine: 25.5.2.1

Troubleshooting
Expand Down
2 changes: 1 addition & 1 deletion docs/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ If you encounter import errors:
pip install --force-reinstall chdb

# Install specific version
pip install chdb==3.6.0
pip install chdb==3.7.1

**Check installation:**

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "chdb"
requires-python = ">=3.8"
version = "3.6.0"
version = "3.7.1"
description = "chDB is an in-process OLAP SQL Engine powered by ClickHouse"
readme = "README.md"
license = {text = "Apache-2.0"}
Expand Down
Loading