You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2020/06/10 09:08:43 UTC

[incubator-iotdb] 01/03: fix doc for releasing v0.10

This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch rel/0.10
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit b17f25fa3e884adda3d9cb9c9d463119abde1717
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Wed Jun 10 15:32:18 2020 +0800

    fix doc for releasing v0.10
---
 README.md                                               | 2 +-
 README_ZH.md                                            | 2 +-
 docs/UserGuide/Ecosystem Integration/Spark TsFile.md    | 2 +-
 docs/UserGuide/Server/Docker Image.md                   | 2 +-
 docs/zh/UserGuide/Client/Programming - JDBC.md          | 2 +-
 docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md | 2 +-
 docs/zh/UserGuide/Server/Docker Image.md                | 2 +-
 service-rpc/rpc-changelist.md                           | 4 ++--
 tsfile/format-changelist.md                             | 4 ++--
 9 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/README.md b/README.md
index 66e7723..33b44f5 100644
--- a/README.md
+++ b/README.md
@@ -81,7 +81,7 @@ For the latest information about IoTDB, please visit [IoTDB official website](ht
 
 # Quick Start
 
-This short guide will walk you through the basic process of using IoTDB. For a more detailed introduction, please visit our website's [User Guide](https://iotdb.apache.org/#/Documents/0.9.x/chap1/sec1).
+This short guide will walk you through the basic process of using IoTDB. For a more detailed introduction, please visit our website's [User Guide](https://iotdb.apache.org/UserGuide/Master/Get%20Started/QuickStart.html).
 
 ## Prerequisites
 
diff --git a/README_ZH.md b/README_ZH.md
index 523f667..964cb46 100644
--- a/README_ZH.md
+++ b/README_ZH.md
@@ -79,7 +79,7 @@ IoTDB的主要特点如下:
 
 # 快速开始
 
-这篇简短的指南将带您了解使用IoTDB的基本过程。如需更详细的介绍,请访问我们的网站[用户指南](https://iotdb.apache.org/#/Documents/0.9.x/chap1/sec1)。
+这篇简短的指南将带您了解使用IoTDB的基本过程。如需更详细的介绍,请访问我们的网站[用户指南](http://iotdb.apache.org/zh/UserGuide/Master/Get%20Started/QuickStart.html)。
 
 ## 环境准备
 
diff --git a/docs/UserGuide/Ecosystem Integration/Spark TsFile.md b/docs/UserGuide/Ecosystem Integration/Spark TsFile.md
index 2902323..00d41a3 100644
--- a/docs/UserGuide/Ecosystem Integration/Spark TsFile.md	
+++ b/docs/UserGuide/Ecosystem Integration/Spark TsFile.md	
@@ -59,7 +59,7 @@ Note:
 Start Spark with TsFile-Spark-Connector in distributed mode (That is, the spark cluster is connected by spark-shell): 
 
 ```
-. /<spark-shell-path>   --jars  tsfile-spark-connector.jar,tsfile-0.8.0-jar-with-dependencies.jar  --master spark://ip:7077
+. /<spark-shell-path>   --jars  tsfile-spark-connector.jar,tsfile-{version}-jar-with-dependencies.jar  --master spark://ip:7077
 ```
 
 Note:
diff --git a/docs/UserGuide/Server/Docker Image.md b/docs/UserGuide/Server/Docker Image.md
index 9c4f8a6..2cc68fe 100644
--- a/docs/UserGuide/Server/Docker Image.md	
+++ b/docs/UserGuide/Server/Docker Image.md	
@@ -81,7 +81,7 @@ $ start-client.sh -h localhost -p 6667 -u root -pw root
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.8.0</version>
+            <version>0.10.0</version>
         </dependency>
 ```
 Some examples about how to use IoTDB with IoTDB-JDBC can be found at: https://github.com/apache/incubator-iotdb/tree/master/example/jdbc/src/main/java/org/apache/iotdb
diff --git a/docs/zh/UserGuide/Client/Programming - JDBC.md b/docs/zh/UserGuide/Client/Programming - JDBC.md
index c1cccee..a3b1c8a 100644
--- a/docs/zh/UserGuide/Client/Programming - JDBC.md	
+++ b/docs/zh/UserGuide/Client/Programming - JDBC.md	
@@ -49,7 +49,7 @@ mvn clean install -pl jdbc -am -Dmaven.test.skip=true
     <dependency>
       <groupId>org.apache.iotdb</groupId>
       <artifactId>iotdb-jdbc</artifactId>
-      <version>0.8.0</version>
+      <version>0.10.0</version>
     </dependency>
 </dependencies>
 ```
diff --git a/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md b/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md
index d2966d7..832c073 100644
--- a/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md	
+++ b/docs/zh/UserGuide/Ecosystem Integration/Spark TsFile.md	
@@ -58,7 +58,7 @@ TsFile-Spark-Connector对Tsfile类型的外部数据源实现Spark的支持。 
 在分布式模式下使用TsFile-Spark-Connector启动Spark(即,Spark集群通过spark-shell连接):
 
 ```
-. /<spark-shell-path>   --jars  tsfile-spark-connector.jar,tsfile-0.8.0-jar-with-dependencies.jar  --master spark://ip:7077
+. /<spark-shell-path>   --jars  tsfile-spark-connector.jar,tsfile-{version}-jar-with-dependencies.jar  --master spark://ip:7077
 ```
 
 注意:
diff --git a/docs/zh/UserGuide/Server/Docker Image.md b/docs/zh/UserGuide/Server/Docker Image.md
index 24f074a..190f2db 100644
--- a/docs/zh/UserGuide/Server/Docker Image.md	
+++ b/docs/zh/UserGuide/Server/Docker Image.md	
@@ -81,7 +81,7 @@ $ start-client.sh -h localhost -p 6667 -u root -pw root
         <dependency>
             <groupId>org.apache.iotdb</groupId>
             <artifactId>iotdb-jdbc</artifactId>
-            <version>0.8.0</version>
+            <version>0.10.0</version>
         </dependency>
 ```
 这里是一些使用 IoTDB-JDBC 连接 IoTDB 的示例: https://github.com/apache/incubator-iotdb/tree/master/example/jdbc/src/main/java/org/apache/iotdb
diff --git a/service-rpc/rpc-changelist.md b/service-rpc/rpc-changelist.md
index 86ac578..1b60515 100644
--- a/service-rpc/rpc-changelist.md
+++ b/service-rpc/rpc-changelist.md
@@ -20,7 +20,7 @@
 -->
 
 
-# 0.10.0 (version-1) -> version-2
+# 0.9.x (version-1) -> 0.10.x (version-2)
 
 Last Updated on 2020-5-25 by Kaifeng Xue.
 
@@ -55,7 +55,7 @@ Last Updated on 2020-5-25 by Kaifeng Xue.
 
 
 
-# 0.8.0 (version-0) -> version-1
+# 0.8.x -> 0.9.x (version-1)
 
 Last Updated on 2019-10-27 by Lei Rui.
 
diff --git a/tsfile/format-changelist.md b/tsfile/format-changelist.md
index 5aed26b..d9a07d7 100644
--- a/tsfile/format-changelist.md
+++ b/tsfile/format-changelist.md
@@ -20,7 +20,7 @@
 -->
 
 
-# version-1 -> version-2
+# version-1 (0.9.x) -> version-2 (0.10.x)
 
 Last Updated on 2019-11-28 by Jialin Qiao.
 
@@ -33,7 +33,7 @@ Last Updated on 2019-11-28 by Jialin Qiao.
 | 1047 | [IOTDB-593] Add metaOffset in TsFileMetadata                 | qiaojialin      | Add metaOffset in TsFileMetadata |
 | 1100 | [IOTDB-605] Add more levels of index in TsFileMetadata       | sunzesong       | Update the structure of deviceMetadata to a tree-level indexed TsFileMetadata |
 
-# 0.8.0 (version-0) -> version-1
+# 0.8.0 -> version-1 (0.9.x)
 
 Last Updated on 2019-10-27 by Lei Rui.