This is an automated email from the ASF dual-hosted git repository.
jiangtian 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 a9b9a816 update versions and release note
a9b9a816 is described below
commit a9b9a81623b2b3fd5eaa920bc701e80a63f74711
Author: Tian Jiang <[email protected]>
AuthorDate: Mon Apr 7 11:33:15 2025 +0800
update versions and release note
---
README-zh.md | 2 +-
README.md | 2 +-
RELEASE_NOTES.md | 18 ++++++++++++++++++
cpp/CMakeLists.txt | 2 +-
cpp/README-zh.md | 2 +-
cpp/pom.xml | 2 +-
docs/src/stage/QuickStart.md | 2 +-
docs/src/zh/stage/QuickStart.md | 2 +-
java/common/pom.xml | 2 +-
java/examples/pom.xml | 4 ++--
java/examples/readme.md | 2 +-
java/pom.xml | 4 ++--
java/tools/pom.xml | 6 +++---
java/tsfile/README-zh.md | 6 +++---
java/tsfile/README.md | 6 +++---
java/tsfile/pom.xml | 4 ++--
pom.xml | 2 +-
python/README.md | 2 +-
python/pom.xml | 2 +-
python/setup.py | 2 +-
20 files changed, 46 insertions(+), 28 deletions(-)
diff --git a/README-zh.md b/README-zh.md
index 9476d4c5..cd99821c 100644
--- a/README-zh.md
+++ b/README-zh.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.1.0-SNAPSHOT
+ |____|/____ >\___ / |__|____/\___ > version 2.0.2
\/ \/ \/
</pre>
[](https://codecov.io/github/apache/tsfile)
diff --git a/README.md b/README.md
index 9d797131..1873cb45 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.1.0-SNAPSHOT
+ |____|/____ >\___ / |__|____/\___ > version 2.0.2
\/ \/ \/
</pre>
[](https://codecov.io/github/apache/tsfile)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 2a766f3a..c47e3156 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -19,6 +19,24 @@
-->
+# Apache TsFile 2.0.2
+
+## Improvement/Bugfix
+- trivial doc fix (#389) by @flashmouse
+- Correct the retained size calculation for BinaryColumn and
BinaryColumnBuilder by @Jackie Tien
+- Don't print exception log when thread is interrupted (#386) by @shuwenwei
+- Fix float encoder overflow when float value itself over int range (#412) by
@Haonan
+- Fix date string parse error (#413) by @Haonan
+- compaction adapting new type when table alter column type (#415) by @jintao
zhu
+- primitive type compatible (#437) by @jintao zhu
+- Fixed the empty string ser/de bug & null string[] array calculation bug by
@Caideyipi
+- add getter for encryptParam (#447) by @jintao zhu
+
+## Docs
+- fix error version (#397) by @CritasWang
+- update download (#398) by @CritasWang
+- Supplement 2.0.0 version UserGuide and modify Download (#365) by @肖林捷
+
# Apache TsFile 2.0.1
## Improvement/Bugfix
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index 75684ce0..6d86bd08 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.1.0.dev)
+set(TsFile_CPP_VERSION 2.0.2.dev)
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/README-zh.md b/cpp/README-zh.md
index b1279a58..85cb3255 100644
--- a/cpp/README-zh.md
+++ b/cpp/README-zh.md
@@ -25,7 +25,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.1.0-SNAPSHOT
+ |____|/____ >\___ / |__|____/\___ > version 2.0.2
\/ \/ \/
</pre>
diff --git a/cpp/pom.xml b/cpp/pom.xml
index 309f1d09..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.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>tsfile-cpp</artifactId>
<packaging>pom</packaging>
diff --git a/docs/src/stage/QuickStart.md b/docs/src/stage/QuickStart.md
index 54936227..eb1a0986 100644
--- a/docs/src/stage/QuickStart.md
+++ b/docs/src/stage/QuickStart.md
@@ -36,7 +36,7 @@ git clone https://github.com/apache/tsfile.git
mvn clean package -Dmaven.test.skip=true
```
-Then, all the jars are in folder named `target/`. Import
`target/tsfile-2.1.0.jar` to your project.
+Then, all the jars are in folder named `target/`. Import
`target/tsfile-2.0.2.jar` to your project.
* Use as a maven dependency:
diff --git a/docs/src/zh/stage/QuickStart.md b/docs/src/zh/stage/QuickStart.md
index fbe34ac9..88856108 100644
--- a/docs/src/zh/stage/QuickStart.md
+++ b/docs/src/zh/stage/QuickStart.md
@@ -34,7 +34,7 @@ git clone https://github.com/apache/tsfile.git
mvn clean package -Dmaven.test.skip=true
```
-命令执行完成之后,所有的 jar 包都可以从 `target/` 目录下找到。之后您可以在自己的工程中导入
`target/tsfile-2.1.0.jar`.
+命令执行完成之后,所有的 jar 包都可以从 `target/` 目录下找到。之后您可以在自己的工程中导入
`target/tsfile-2.0.2.jar`.
* 使用 Maven 依赖:
diff --git a/java/common/pom.xml b/java/common/pom.xml
index 0eb4066d..966d3e80 100644
--- a/java/common/pom.xml
+++ b/java/common/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-java</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>common</artifactId>
<name>TsFile: Java: Common</name>
diff --git a/java/examples/pom.xml b/java/examples/pom.xml
index 9223f596..69bf02f4 100644
--- a/java/examples/pom.xml
+++ b/java/examples/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-java</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>examples</artifactId>
<name>TsFile: Java: Examples</name>
@@ -36,7 +36,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
</dependencies>
<build>
diff --git a/java/examples/readme.md b/java/examples/readme.md
index 23f5a7c5..7bd524f2 100644
--- a/java/examples/readme.md
+++ b/java/examples/readme.md
@@ -31,7 +31,7 @@ The example is to show how to write and read a TsFile File.
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
</dependencies>
```
diff --git a/java/pom.xml b/java/pom.xml
index 9332ad0b..94445854 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -24,10 +24,10 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-parent</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>tsfile-java</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
<packaging>pom</packaging>
<name>TsFile: Java</name>
<modules>
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index 0bc2c89a..d37c5445 100644
--- a/java/tools/pom.xml
+++ b/java/tools/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-java</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>tools</artifactId>
<name>TsFile: Java: Tools</name>
@@ -32,7 +32,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>common</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
diff --git a/java/tsfile/README-zh.md b/java/tsfile/README-zh.md
index 32f15fce..2ab5588e 100644
--- a/java/tsfile/README-zh.md
+++ b/java/tsfile/README-zh.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.1.0-SNAPSHOT
+ |____|/____ >\___ / |__|____/\___ > version 2.0.2
\/ \/ \/
</pre>
@@ -34,14 +34,14 @@ ___________ ___________.__.__
### 在 Maven 中添加 TsFile 依赖
-当前开发版本是 `2.1.0-SNAPSHOT`,可以这样引用
+当前发布版本是 `2.0.2`,可以这样引用
```xml
<dependencies>
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
<dependencies>
```
diff --git a/java/tsfile/README.md b/java/tsfile/README.md
index b92bc52e..4c5b3f8b 100644
--- a/java/tsfile/README.md
+++ b/java/tsfile/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.1.0-SNAPSHOT
+ |____|/____ >\___ / |__|____/\___ > version 2.0.2
\/ \/ \/
</pre>
@@ -34,14 +34,14 @@ ___________ ___________.__.__
### Add TsFile as a dependency in Maven
-The current developing version is `2.1.0-SNAPSHOT`
+The current release version is `2.0.2`
```xml
<dependencies>
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
<dependencies>
```
diff --git a/java/tsfile/pom.xml b/java/tsfile/pom.xml
index 1507cd83..ffa08351 100644
--- a/java/tsfile/pom.xml
+++ b/java/tsfile/pom.xml
@@ -24,7 +24,7 @@
<parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-java</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</parent>
<artifactId>tsfile</artifactId>
<name>TsFile: Java: TsFile</name>
@@ -38,7 +38,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>common</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
</dependency>
<dependency>
<groupId>com.github.luben</groupId>
diff --git a/pom.xml b/pom.xml
index 2e1d5533..5ee3745b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
</parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-parent</artifactId>
- <version>2.1.0-250325-SNAPSHOT</version>
+ <version>2.0.2</version>
<packaging>pom</packaging>
<name>Apache TsFile Project Parent POM</name>
<properties>
diff --git a/python/README.md b/python/README.md
index dcfd24e1..52d53ee5 100644
--- a/python/README.md
+++ b/python/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.1.0-SNAPSHOT
+ |____|/____ >\___ / |__|____/\___ > version 2.0.2
\/ \/ \/
</pre>
diff --git a/python/pom.xml b/python/pom.xml
index 051e77f0..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.1.0-250325-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 84727278..59a787e4 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -24,7 +24,7 @@ import platform
import shutil
import os
-version = "2.1.0.dev"
+version = "2.0.2.dev"
system = platform.system()
def copy_tsfile_lib(source_dir, target_dir, suffix):