This is an automated email from the ASF dual-hosted git repository. colinlee pushed a commit to branch 221_dev3 in repository https://gitbox.apache.org/repos/asf/tsfile.git
commit c5c440db1f6348b55cbcc90951375fb8e1082f2c Author: ColinLee <[email protected]> AuthorDate: Sun Apr 12 18:34:03 2026 +0800 bump dev4. --- cpp/CMakeLists.txt | 2 +- python/VersionUpdater.groovy | 2 +- python/pyproject.toml | 2 +- python/setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index a7f0d47c..67500e02 100755 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -27,7 +27,7 @@ else() endif () cmake_policy(SET CMP0079 NEW) -set(TsFile_CPP_VERSION 2.2.1.dev3) +set(TsFile_CPP_VERSION 2.2.1.dev4) set(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -Wall") if (CMAKE_CXX_COMPILER_ID MATCHES "GNU") diff --git a/python/VersionUpdater.groovy b/python/VersionUpdater.groovy index e31b8801..b0719864 100644 --- a/python/VersionUpdater.groovy +++ b/python/VersionUpdater.groovy @@ -24,7 +24,7 @@ def currentMavenVersion = project.version as String def currentPyVersion = currentMavenVersion if(currentMavenVersion.contains("-SNAPSHOT")) { - currentPyVersion = currentMavenVersion.split("-SNAPSHOT")[0] + ".dev3" + currentPyVersion = currentMavenVersion.split("-SNAPSHOT")[0] + ".dev4" } println "Current Project Version in Maven: " + currentMavenVersion diff --git a/python/pyproject.toml b/python/pyproject.toml index 243e3f5a..9187f7c4 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -28,7 +28,7 @@ build-backend = "setuptools.build_meta" [project] name = "tsfile" -version = "2.2.1.dev3" +version = "2.2.1.dev4" requires-python = ">=3.9" description = "TsFile Python" readme = {file = "README.md", content-type = "text/markdown"} diff --git a/python/setup.py b/python/setup.py index de02ad48..867fdb9a 100644 --- a/python/setup.py +++ b/python/setup.py @@ -33,7 +33,7 @@ CPP_OUT = ROOT / ".." / "cpp" / "target" / "build" CPP_LIB = CPP_OUT / "lib" CPP_INC = CPP_OUT / "include" -version = "2.2.1.dev3" +version = "2.2.1.dev4" if not CPP_INC.exists(): raise FileNotFoundError(f"missing C++ headers: {CPP_INC}")
