Skip to content

Commit 5d58f58

Browse files
authored
Merge pull request #407 from chdb-io/bump_version1
bump version to 3.7.1
2 parents 855921f + 6fa9d74 commit 5d58f58

File tree

8 files changed

+16
-6
lines changed

8 files changed

+16
-6
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "3.6.0"
2+
current_version = "3.7.1"
33
commit = true
44
tag = false
55
tag_name = "v{new_version}"

.github/workflows/build_macos_arm64_wheels.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ jobs:
217217
bash -x ./examples/runArrowTest.sh
218218
- name: Build wheels
219219
run: |
220+
rm -rf chdb/build/
220221
export PATH="$HOME/.pyenv/bin:$PATH"
221222
eval "$(pyenv init -)"
222223
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
@@ -230,6 +231,10 @@ jobs:
230231
eval "$(pyenv init -)"
231232
pyenv shell 3.8
232233
python -m wheel tags --platform-tag=macosx_11_0_arm64 --remove dist/*.whl
234+
- name: Verify wheel sizes
235+
run: |
236+
echo "=== Wheel sizes ==="
237+
du -sh dist/*
233238
- name: Setup core dump
234239
run: |
235240
mkdir -p tmp/core

.github/workflows/build_macos_x86_wheels.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,7 @@ jobs:
218218
bash -x ./examples/runArrowTest.sh
219219
- name: Build wheels
220220
run: |
221+
rm -rf chdb/build/
221222
export PATH="$HOME/.pyenv/bin:$PATH"
222223
eval "$(pyenv init -)"
223224
source ~/.cargo/env
@@ -232,6 +233,10 @@ jobs:
232233
eval "$(pyenv init -)"
233234
pyenv shell 3.9
234235
python -m wheel tags --platform-tag=macosx_10_15_x86_64 --remove dist/*.whl
236+
- name: Verify wheel sizes
237+
run: |
238+
echo "=== Wheel sizes ==="
239+
du -sh dist/*
235240
- name: Setup core dump collection
236241
run: |
237242
mkdir -p tmp/core

chdb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class ChdbError(Exception):
5050
# UDF script path will be f"{g_udf_path}/{func_name}.py"
5151
g_udf_path = ""
5252

53-
__version__ = "3.6.0"
53+
__version__ = "3.7.1"
5454
if sys.version_info[:2] >= (3, 7):
5555
# get the path of the current file
5656
current_path = os.path.dirname(os.path.abspath(__file__))

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
if chdb and hasattr(chdb, '__version__'):
4646
version = release = chdb.__version__
4747
else:
48-
version = release = '3.6.0'
48+
version = release = '3.7.1'
4949

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

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ You should see output similar to:
8989
message
9090
chDB is working!
9191
92-
chDB version: 3.6.0
92+
chDB version: 3.7.1
9393
ClickHouse engine: 25.5.2.1
9494
9595
Troubleshooting

docs/troubleshooting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If you encounter import errors:
4040
pip install --force-reinstall chdb
4141
4242
# Install specific version
43-
pip install chdb==3.6.0
43+
pip install chdb==3.7.1
4444
4545
**Check installation:**
4646

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "chdb"
33
requires-python = ">=3.8"
4-
version = "3.6.0"
4+
version = "3.7.1"
55
description = "chDB is an in-process OLAP SQL Engine powered by ClickHouse"
66
readme = "README.md"
77
license = {text = "Apache-2.0"}

0 commit comments

Comments
 (0)