Explorar el Código

update 0.7.0 version

Signed-off-by: Zhiru Zhu <zzhu@fandm.edu>
Zhiru Zhu hace 5 años
padre
commit
75c6bafb41
Se han modificado 2 ficheros con 10 adiciones y 2 borrados
  1. 7 0
      CHANGELOG.md
  2. 3 2
      README.md

+ 7 - 0
CHANGELOG.md

@@ -1,5 +1,12 @@
 # Changelog     
 
+## milvus-sdk-java 0.7.0 (2020-04-15)
+
+## Feature
+---
+- \#261 - Integrate ANNOY into Milvus
+- \#1828 - Add searchAsync / createIndexAsync / insertAsync / flushAsync / compactAsync API
+
 ## milvus-sdk-java 0.6.0 (2020-03-31)
 
 ### Bug

+ 3 - 2
README.md

@@ -22,6 +22,7 @@ The following table shows compatibilities between Milvus and Java SDK.
    |     0.6.0      |    0.4.1    |
    |     0.7.0      |    0.5.0    |
    |     0.7.1      |    0.6.0    |
+   |     0.8.0      |    0.7.0    |
 
 ### Install Java SDK
 
@@ -33,14 +34,14 @@ You can use **Apache Maven** or **Gradle**/**Grails** to download the SDK.
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>0.6.0</version>
+            <version>0.7.0</version>
         </dependency>
        ```
 
    - Gradle/Grails
 
         ```gradle
-        compile 'io.milvus:milvus-sdk-java:0.6.0'
+        compile 'io.milvus:milvus-sdk-java:0.7.0'
         ```
 
 ### Examples