This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch rc/2.0.2
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/rc/2.0.2 by this push:
new b4b48ad9 update cpp py version
b4b48ad9 is described below
commit b4b48ad95e3863f10aa4aba0a2d7666d28a799b9
Author: HTHou <[email protected]>
AuthorDate: Mon Apr 7 20:45:14 2025 +0800
update cpp py version
---
cpp/CMakeLists.txt | 2 +-
cpp/pom.xml | 2 +-
python/pom.xml | 2 +-
python/setup.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index 6d86bd08..6d06953e 100755
--- a/cpp/CMakeLists.txt
+++ b/cpp/CMakeLists.txt
@@ -20,7 +20,7 @@ cmake_minimum_required(VERSION 3.11)
project(TsFile_CPP)
cmake_policy(SET CMP0079 NEW)
-set(TsFile_CPP_VERSION 2.0.2.dev)
+set(TsFile_CPP_VERSION 2.0.2)
set(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -Wall")
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=maybe-uninitialized
-D__STDC_FORMAT_MACROS")
diff --git a/cpp/pom.xml b/cpp/pom.xml
index 4c07d9ff..56b90747 100644
--- a/cpp/pom.xml
+++ b/cpp/pom.xml
@@ -22,7 +22,7 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-parent</artifactId>
- <version>2.0.2-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>tsfile-cpp</artifactId>
<packaging>pom</packaging>
diff --git a/python/pom.xml b/python/pom.xml
index d22af6e1..c1b0348f 100644
--- a/python/pom.xml
+++ b/python/pom.xml
@@ -22,7 +22,7 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-parent</artifactId>
- <version>2.0.2-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>tsfile-python</artifactId>
<packaging>pom</packaging>
diff --git a/python/setup.py b/python/setup.py
index 59a787e4..2c359ff1 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -24,7 +24,7 @@ import platform
import shutil
import os
-version = "2.0.2.dev"
+version = "2.0.2"
system = platform.system()
def copy_tsfile_lib(source_dir, target_dir, suffix):