This is an automated email from the ASF dual-hosted git repository.
haonan pushed a commit to branch rc/2.0.1
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/rc/2.0.1 by this push:
new b1585b271 update RN
b1585b271 is described below
commit b1585b271fb2c20500036fb9b9d11a5298a6cf2b
Author: HTHou <[email protected]>
AuthorDate: Fri Feb 7 10:58:02 2025 +0800
update RN
---
RELEASE_NOTES.md | 11 +++++++++++
cpp/CMakeLists.txt | 2 +-
python/setup.py | 2 +-
3 files changed, 13 insertions(+), 2 deletions(-)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 8b557d78d..2a766f3ac 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -18,6 +18,17 @@
under the License.
-->
+
+# Apache TsFile 2.0.1
+
+## Improvement/Bugfix
+- Modify tablet usage (#358)
+- Add column builder compatibility (#367)
+- add cache table schema map option (#369)
+- fix getVisibleMetadataList
+- TimeColumn.reset() throws UnsupportedOperationException (#379)
+- Add statistic compatibility (#382)
+
# Apache TsFile 2.0.0
## New Feature
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index d8449797f..25d82f835 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.0.dev)
+set(TsFile_CPP_VERSION 2.0.1)
set(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -Wall -Werror")
message("cmake using: USE_CPP11=${USE_CPP11}")
diff --git a/python/setup.py b/python/setup.py
index 4fd546c8a..24e0004f1 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -24,7 +24,7 @@ import platform
import shutil
import os
-version = "2.0.0.dev"
+version = "2.0.1"
system = platform.system()