Browse Source

Prepare for v2.2.3 (#444)

Signed-off-by: groot <yihua.mo@zilliz.com>
groot 2 years ago
parent
commit
054b4ff94d
4 changed files with 15 additions and 6 deletions
  1. 9 0
      CHANGELOG.md
  2. 3 3
      README.md
  3. 2 2
      examples/pom.xml
  4. 1 1
      pom.xml

+ 9 - 0
CHANGELOG.md

@@ -1,5 +1,14 @@
 # Changelog
 
+## milvus-sdk-java 2.2.3 (2023-02-11)
+
+### Improvement
+
+- Implement getLoadState() interface
+- Add refresh parameter to load() interface
+- Add getProcess() for bulkinsert task state
+- Fix example error
+
 ## milvus-sdk-java 2.2.2 (2023-01-04)
 
 ### Bug

+ 3 - 3
README.md

@@ -17,7 +17,7 @@ The following table shows compatibilities between Milvus and Java SDK.
 | :------------: |:----------------:|
 |     2.0      |      2.0.4       |
 |     2.1      |   2.1.0-beta4    |
-|     2.2      |     2.2.2        |
+|     2.2      |      2.2.3       |
 
 ### Install Java SDK
 
@@ -29,14 +29,14 @@ You can use **Apache Maven** or **Gradle**/**Grails** to download the SDK.
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.2.2</version>
+            <version>2.2.3</version>
         </dependency>
        ```
 
    - Gradle/Grails
 
         ```gradle
-        compile 'io.milvus:milvus-sdk-java:2.2.2'
+        compile 'io.milvus:milvus-sdk-java:2.2.3'
         ```
 
 ### Examples

+ 2 - 2
examples/pom.xml

@@ -25,13 +25,13 @@
     <parent>
         <groupId>io.milvus</groupId>
         <artifactId>milvus-sdk-java</artifactId>
-        <version>2.2.2</version>
+        <version>2.2.3</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.2.2</version>
+    <version>2.2.3</version>
 
     <build>
         <plugins>

+ 1 - 1
pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java</artifactId>
-    <version>2.2.2</version>
+    <version>2.2.3</version>
     <packaging>jar</packaging>
 
     <name>io.milvus:milvus-sdk-java</name>