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 669d926a9c4e982e6248cac741c07d8c5222120c
Author: ColinLee <[email protected]>
AuthorDate: Sun Apr 12 17:11:31 2026 +0800

    version 2.2.1.dev3.
---
 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 3f1d8bdd..a7f0d47c 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.dev)
+set(TsFile_CPP_VERSION 2.2.1.dev3)
 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 a586fe93..e31b8801 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] + ".dev"
+    currentPyVersion = currentMavenVersion.split("-SNAPSHOT")[0] + ".dev3"
 }
 println "Current Project Version in Maven:  " + currentMavenVersion
 
diff --git a/python/pyproject.toml b/python/pyproject.toml
index 476f9123..243e3f5a 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.dev"
+version = "2.2.1.dev3"
 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 16fc7aa8..de02ad48 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.dev"
+version = "2.2.1.dev3"
 
 if not CPP_INC.exists():
     raise FileNotFoundError(f"missing C++ headers: {CPP_INC}")

Reply via email to