Browse Source

Change README (#224)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot 3 years ago
parent
commit
bac88fe49b
3 changed files with 7 additions and 7 deletions
  1. 2 2
      .github/mergify.yml
  2. 4 4
      README.md
  3. 1 1
      examples/pom.xml

+ 2 - 2
.github/mergify.yml

@@ -2,7 +2,7 @@ pull_request_rules:
   - name: Test passed for code changed
   - name: Test passed for code changed
     conditions:
     conditions:
       - base=master
       - base=master
-      - "status-success=Java CI with Maven / Build with Maven"
+      - "status-success=Build with Maven"
     actions:
     actions:
       label:
       label:
         add:
         add:
@@ -11,7 +11,7 @@ pull_request_rules:
   - name: Remove ci-passed when code check failed
   - name: Remove ci-passed when code check failed
     conditions:
     conditions:
       - base=master
       - base=master
-      - "check-failure=Java CI with Maven / Build with Maven"
+      - "check-failure=Build with Maven"
     actions:
     actions:
       label:
       label:
         remove:
         remove:

+ 4 - 4
README.md

@@ -15,7 +15,7 @@ The following table shows compatibilities between Milvus and Java SDK.
 
 
 | Milvus version | Java SDK version |
 | Milvus version | Java SDK version |
 | :------------: | :--------------: |
 | :------------: | :--------------: |
-|     1.0.x      |    1.0.0         |
+|     2.0      |    2.0.0         |
 
 
 ### Install Java SDK
 ### Install Java SDK
 
 
@@ -27,14 +27,14 @@ You can use **Apache Maven** or **Gradle**/**Grails** to download the SDK.
         <dependency>
         <dependency>
             <groupId>io.milvus</groupId>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>1.0.0</version>
+            <version>2.0.0</version>
         </dependency>
         </dependency>
        ```
        ```
 
 
    - Gradle/Grails
    - Gradle/Grails
 
 
         ```gradle
         ```gradle
-        compile 'io.milvus:milvus-sdk-java:1.0.0'
+        compile 'io.milvus:milvus-sdk-java:2.0.0'
         ```
         ```
 
 
 ### Examples
 ### Examples
@@ -43,7 +43,7 @@ Please refer to [examples](https://github.com/milvus-io/milvus-sdk-java/tree/mas
 
 
 ### Documentation
 ### Documentation
 
 
-- [Javadoc](https://milvus-io.github.io/milvus-sdk-java/javadoc/index.html)
+
 
 
 ### Troubleshooting
 ### Troubleshooting
 
 

+ 1 - 1
examples/pom.xml

@@ -25,7 +25,7 @@
 
 
     <groupId>io.milvus</groupId>
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>1.0.0</version>
+    <version>2.0.0</version>
     <build>
     <build>
         <plugins>
         <plugins>
             <plugin>
             <plugin>