Browse Source

update

Signed-off-by: youny626 <zzhu@fandm.edu>
youny626 5 years ago
parent
commit
1bc7d035ec
5 changed files with 16 additions and 6 deletions
  1. 11 0
      CHANGELOG.md
  2. 3 2
      README.md
  3. 1 1
      examples/pom.xml
  4. 0 2
      milvus-sdk-java.iml
  5. 1 1
      src/main/java/io/milvus/client/MilvusClient.java

+ 11 - 0
CHANGELOG.md

@@ -1,5 +1,16 @@
 # Changelog     
 # Changelog     
 
 
+## milvus-sdk-java 0.6.0 (2020-03-31)
+
+### Bug
+---
+- \#1641 - Fix incorrect error logging message
+- \#1642 - Fix compilation error of ByteBuffer
+
+## Feature
+---
+- \#1603 - Add binary metrics: Substructure & Superstructure
+
 ## milvus-sdk-java 0.5.0 (2020-03-11)
 ## milvus-sdk-java 0.5.0 (2020-03-11)
 
 
 ## milvus-sdk-java 0.4.1 (2019-12-16)
 ## milvus-sdk-java 0.4.1 (2019-12-16)

+ 3 - 2
README.md

@@ -21,6 +21,7 @@ The following table shows compatibilities between Milvus and Java SDK.
    |     0.5.3      |    0.3.0    |
    |     0.5.3      |    0.3.0    |
    |     0.6.0      |    0.4.1    |
    |     0.6.0      |    0.4.1    |
    |     0.7.0      |    0.5.0    |
    |     0.7.0      |    0.5.0    |
+   |     0.7.1      |    0.6.0    |
 
 
 ### Install Java SDK
 ### Install Java SDK
 
 
@@ -32,14 +33,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>0.5.0</version>
+            <version>0.6.0</version>
         </dependency>
         </dependency>
        ```
        ```
 
 
    - Gradle/Grails
    - Gradle/Grails
 
 
         ```gradle
         ```gradle
-        compile 'io.milvus:milvus-sdk-java:0.5.0'
+        compile 'io.milvus:milvus-sdk-java:0.6.0'
         ```
         ```
 
 
 ### Examples
 ### Examples

+ 1 - 1
examples/pom.xml

@@ -63,7 +63,7 @@
         <dependency>
         <dependency>
             <groupId>io.milvus</groupId>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>0.6.0-SNAPSHOT</version>
+            <version>0.6.0</version>
         </dependency>
         </dependency>
         <dependency>
         <dependency>
             <groupId>com.google.code.gson</groupId>
             <groupId>com.google.code.gson</groupId>

+ 0 - 2
milvus-sdk-java.iml

@@ -1,2 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" version="4" />

+ 1 - 1
src/main/java/io/milvus/client/MilvusClient.java

@@ -26,7 +26,7 @@ public interface MilvusClient {
 
 
   String clientVersion = "0.6.0";
   String clientVersion = "0.6.0";
 
 
-  /** @return current Milvus client version: 0.5.0 */
+  /** @return current Milvus client version: 0.6.0 */
   default String getClientVersion() {
   default String getClientVersion() {
     return clientVersion;
     return clientVersion;
   }
   }