This is an automated email from the ASF dual-hosted git repository.
jiangtian pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/tsfile.git
The following commit(s) were added to refs/heads/develop by this push:
new 2b0e1533c update version to 2.1.0
2b0e1533c is described below
commit 2b0e1533cfa7d07c68e420c8568f492bea01781a
Author: Tian Jiang <[email protected]>
AuthorDate: Fri Jan 24 15:06:42 2025 +0800
update version to 2.1.0
---
README-zh.md | 2 +-
README.md | 2 +-
cpp/CMakeLists.txt | 2 +-
cpp/README-zh.md | 2 +-
cpp/README.md | 2 +-
cpp/pom.xml | 2 +-
docs/src/UserGuide/latest/QuickStart/QuickStart.md | 2 +-
docs/src/stage/QuickStart.md | 6 +++---
docs/src/zh/UserGuide/latest/QuickStart/QuickStart.md | 2 +-
docs/src/zh/stage/QuickStart.md | 6 +++---
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-zh.md | 2 +-
python/README.md | 2 +-
python/pom.xml | 2 +-
python/setup.py | 2 +-
23 files changed, 36 insertions(+), 36 deletions(-)
diff --git a/README-zh.md b/README-zh.md
index 72f769478..8bcd39d98 100644
--- a/README-zh.md
+++ b/README-zh.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
[](https://codecov.io/github/apache/tsfile)
diff --git a/README.md b/README.md
index ee9e5245c..cbfb2bc23 100644
--- a/README.md
+++ b/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
[](https://codecov.io/github/apache/tsfile)
diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt
index e312eb469..8f402dd9a 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.1.0.dev)
set(CMAKE_CXX_FLAGS "$ENV{CXXFLAGS} -Wall -Werror")
if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=maybe-uninitialized")
diff --git a/cpp/README-zh.md b/cpp/README-zh.md
index a482ed58f..6a26f2b95 100644
--- a/cpp/README-zh.md
+++ b/cpp/README-zh.md
@@ -25,7 +25,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
diff --git a/cpp/README.md b/cpp/README.md
index 83515e0ee..5a663b300 100644
--- a/cpp/README.md
+++ b/cpp/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
diff --git a/cpp/pom.xml b/cpp/pom.xml
index 4d3268fe8..6aeedcaa5 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.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</parent>
<artifactId>tsfile-cpp</artifactId>
<packaging>pom</packaging>
diff --git a/docs/src/UserGuide/latest/QuickStart/QuickStart.md
b/docs/src/UserGuide/latest/QuickStart/QuickStart.md
index 315bc2db4..b246ff6f8 100644
--- a/docs/src/UserGuide/latest/QuickStart/QuickStart.md
+++ b/docs/src/UserGuide/latest/QuickStart/QuickStart.md
@@ -32,7 +32,7 @@ Add the following content to the `dependencies` in `pom.xml`
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
```
diff --git a/docs/src/stage/QuickStart.md b/docs/src/stage/QuickStart.md
index 261128614..790852103 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.0.0.jar` to your project.
+Then, all the jars are in folder named `target/`. Import
`target/tsfile-2.1.0.jar` to your project.
* Use as a maven dependency:
@@ -60,7 +60,7 @@ Then, all the jars are in folder named `target/`. Import
`target/tsfile-2.0.0.ja
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
```
@@ -94,7 +94,7 @@ Then, all the jars are in folder named `target/`. Import
`target/tsfile-2.0.0.ja
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
```
diff --git a/docs/src/zh/UserGuide/latest/QuickStart/QuickStart.md
b/docs/src/zh/UserGuide/latest/QuickStart/QuickStart.md
index 8a3fd7dc5..0aa951901 100644
--- a/docs/src/zh/UserGuide/latest/QuickStart/QuickStart.md
+++ b/docs/src/zh/UserGuide/latest/QuickStart/QuickStart.md
@@ -32,7 +32,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
```
diff --git a/docs/src/zh/stage/QuickStart.md b/docs/src/zh/stage/QuickStart.md
index 90512e47c..b7c6e7275 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.0.0.jar`.
+命令执行完成之后,所有的 jar 包都可以从 `target/` 目录下找到。之后您可以在自己的工程中导入
`target/tsfile-2.1.0.jar`.
* 使用 Maven 依赖:
@@ -56,7 +56,7 @@ mvn clean install -Dmaven.test.skip=true
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
```
@@ -90,7 +90,7 @@ mvn clean install -Dmaven.test.skip=true
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
```
diff --git a/java/common/pom.xml b/java/common/pom.xml
index 1fbd20e20..bcd54f5e1 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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</parent>
<artifactId>common</artifactId>
<name>TsFile: Java: Common</name>
diff --git a/java/examples/pom.xml b/java/examples/pom.xml
index 0b44e2d8b..e71ecf6d1 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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</parent>
<artifactId>examples</artifactId>
<packaging>pom</packaging>
@@ -37,7 +37,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
diff --git a/java/examples/readme.md b/java/examples/readme.md
index 5e38313b5..23f5a7c50 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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
```
diff --git a/java/pom.xml b/java/pom.xml
index d5d4be2ed..8c6be19be 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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</parent>
<artifactId>tsfile-java</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>TsFile: Java</name>
<modules>
diff --git a/java/tools/pom.xml b/java/tools/pom.xml
index c5d2bc75c..8cc58d1ad 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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
@@ -50,7 +50,7 @@
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
diff --git a/java/tsfile/README-zh.md b/java/tsfile/README-zh.md
index 18a716469..e97abb800 100644
--- a/java/tsfile/README-zh.md
+++ b/java/tsfile/README-zh.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
@@ -34,14 +34,14 @@ ___________ ___________.__.__
### 在 Maven 中添加 TsFile 依赖
-当前发布版本是 `2.0.0`,可以这样引用
+当前发布版本是 `2.1.0`,可以这样引用
```xml
<dependencies>
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
<dependencies>
```
diff --git a/java/tsfile/README.md b/java/tsfile/README.md
index ce8cae108..b9d85928b 100644
--- a/java/tsfile/README.md
+++ b/java/tsfile/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
@@ -34,14 +34,14 @@ ___________ ___________.__.__
### Add TsFile as a dependency in Maven
-The current release version is `2.0.0`
+The current release version is `2.1.0`
```xml
<dependencies>
<dependency>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile</artifactId>
- <version>2.0.0</version>
+ <version>2.1.0</version>
</dependency>
<dependencies>
```
diff --git a/java/tsfile/pom.xml b/java/tsfile/pom.xml
index 0a2441b87..a095176f2 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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</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.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.github.luben</groupId>
diff --git a/pom.xml b/pom.xml
index 679834cdf..1ee0d8039 100644
--- a/pom.xml
+++ b/pom.xml
@@ -28,7 +28,7 @@
</parent>
<groupId>org.apache.tsfile</groupId>
<artifactId>tsfile-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache TsFile Project Parent POM</name>
<properties>
diff --git a/python/README-zh.md b/python/README-zh.md
index 7ab1be507..3c1a771f3 100644
--- a/python/README-zh.md
+++ b/python/README-zh.md
@@ -25,7 +25,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 21.0
\/ \/ \/
</pre>
diff --git a/python/README.md b/python/README.md
index e27344e78..23af6eb7e 100644
--- a/python/README.md
+++ b/python/README.md
@@ -26,7 +26,7 @@ ___________ ___________.__.__
\__ ___/____\_ _____/|__| | ____
| | / ___/| __) | | | _/ __ \
| | \___ \ | \ | | |_\ ___/
- |____|/____ >\___ / |__|____/\___ > version 2.0.0
+ |____|/____ >\___ / |__|____/\___ > version 2.1.0
\/ \/ \/
</pre>
diff --git a/python/pom.xml b/python/pom.xml
index a0cf46c94..43baf76e8 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.0-SNAPSHOT</version>
+ <version>2.1.0-SNAPSHOT</version>
</parent>
<artifactId>tsfile-python</artifactId>
<packaging>pom</packaging>
diff --git a/python/setup.py b/python/setup.py
index 4fd546c8a..bb8a2db34 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.1.0.dev"
system = platform.system()