Browse Source

Prepare for v2.3.2 (#642)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot 1 year ago
parent
commit
b63692f6b4
4 changed files with 15 additions and 7 deletions
  1. 8 0
      CHANGELOG.md
  2. 4 4
      README.md
  3. 2 2
      examples/pom.xml
  4. 1 1
      pom.xml

+ 8 - 0
CHANGELOG.md

@@ -1,5 +1,13 @@
 # Changelog
 
+## milvus-sdk-java 2.3.2 (2023-09-15)
+
+### Improvement
+
+- Fix the bug that consistency level is ignored in search() interface
+- Set log level for MilvusMultiServiceClient in runtime
+- Fix the bug the MilvusMultiServiceClient cannot specify database name
+
 ## milvus-sdk-java 2.3.1 (2023-09-05)
 
 ### Improvement

+ 4 - 4
README.md

@@ -18,8 +18,8 @@ The following table shows compatibilities between Milvus and Java SDK.
 |     2.0      |      2.0.4       |
 |     2.1      |   2.1.0-beta4    |
 |     2.2.0 ~ 2.2.8      |      2.2.0 ~ 2.2.5       |
-|     >= 2.2.9      |      2.2.7 ~ 2.2.13       |
-|     2.3.0      |      2.3.1       |
+|     >= 2.2.9      |      2.2.7 ~ 2.2.14       |
+|     2.3.x      |      2.3.2       |
 
 ### Install Java SDK
 
@@ -31,14 +31,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.3.1</version>
+            <version>2.3.2</version>
         </dependency>
        ```
 
    - Gradle/Grails
 
         ```gradle
-        implementation 'io.milvus:milvus-sdk-java:2.3.1'
+        implementation 'io.milvus:milvus-sdk-java:2.3.2'
         ```
 
 ### Examples

+ 2 - 2
examples/pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.3.1</version>
+    <version>2.3.2</version>
 
     <build>
         <plugins>
@@ -64,7 +64,7 @@
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.3.1</version>
+            <version>2.3.2</version>
         </dependency>
         <dependency>
             <groupId>com.google.code.gson</groupId>

+ 1 - 1
pom.xml

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