diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 399b5004d..3eaf6d512 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -19,6 +19,21 @@ --> +# Apache TsFile 2.1.0 + +## New Feature +- [Java] Support setting default compression by datatype(#523). +- [Java] Support using environment variables to generate main encrypt key(#512). +- [Java] Support estimating ram usage of measurement schema(#508). +- [Java] Add TsFileLastReader to retrieve the last points in a TsFile(#498). +- [Cpp/C/Python] Support TsFile Table reader and writer. + +## Improvement/Bugfix +- [Java] Fix memory calculation of BinaryColumnBuilder(#530). +- [Java] Resolved case sensitivity issue when reading column names(#518). +- [Java] Fix npe when closing the last reader that has not been used(#513). +- [Java] Fix float RLBE encoding loss of precision(#484). + # Apache TsFile 2.0.3 ## Improvement/Bugfix diff --git a/cpp/pom.xml b/cpp/pom.xml index 2c574830c..7a62b0a0b 100644 --- a/cpp/pom.xml +++ b/cpp/pom.xml @@ -22,7 +22,7 @@ org.apache.tsfile tsfile-parent - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT tsfile-cpp pom @@ -75,8 +75,8 @@ - - + + diff --git a/java/common/pom.xml b/java/common/pom.xml index bcd54f5e1..a8350e6e5 100644 --- a/java/common/pom.xml +++ b/java/common/pom.xml @@ -24,7 +24,7 @@ org.apache.tsfile tsfile-java - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT common TsFile: Java: Common diff --git a/java/examples/pom.xml b/java/examples/pom.xml index 5a484cfc1..ce64f2c42 100644 --- a/java/examples/pom.xml +++ b/java/examples/pom.xml @@ -24,7 +24,7 @@ org.apache.tsfile tsfile-java - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT examples TsFile: Java: Examples @@ -36,7 +36,7 @@ org.apache.tsfile tsfile - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT diff --git a/java/pom.xml b/java/pom.xml index ef2a1063c..2d1440ff5 100644 --- a/java/pom.xml +++ b/java/pom.xml @@ -24,10 +24,10 @@ org.apache.tsfile tsfile-parent - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT tsfile-java - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT pom TsFile: Java @@ -114,7 +114,7 @@ org.apache.tsfile,,javax,java,\# - + UNIX diff --git a/java/tools/pom.xml b/java/tools/pom.xml index 8cc58d1ad..1139d376c 100644 --- a/java/tools/pom.xml +++ b/java/tools/pom.xml @@ -24,7 +24,7 @@ org.apache.tsfile tsfile-java - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT tools TsFile: Java: Tools @@ -32,7 +32,7 @@ org.apache.tsfile common - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT commons-cli @@ -50,7 +50,7 @@ org.apache.tsfile tsfile - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT ch.qos.logback diff --git a/java/tsfile/pom.xml b/java/tsfile/pom.xml index 8625f0cfd..39b416cc9 100644 --- a/java/tsfile/pom.xml +++ b/java/tsfile/pom.xml @@ -24,7 +24,7 @@ org.apache.tsfile tsfile-java - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT tsfile TsFile: Java: TsFile @@ -38,7 +38,7 @@ org.apache.tsfile common - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT com.github.luben diff --git a/pom.xml b/pom.xml index 5c3a77ccb..fc1178174 100644 --- a/pom.xml +++ b/pom.xml @@ -28,13 +28,13 @@ org.apache.tsfile tsfile-parent - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT pom Apache TsFile Project Parent POM 1.8 1.8 - + false 3.30.2-b1 2.44.3 @@ -240,7 +240,7 @@ validate - + diff --git a/python/pom.xml b/python/pom.xml index 88e48818e..7df1e88a5 100644 --- a/python/pom.xml +++ b/python/pom.xml @@ -22,7 +22,7 @@ org.apache.tsfile tsfile-parent - 2.1.0-SNAPSHOT + 2.1.1-SNAPSHOT tsfile-python pom