Browse Source

Prepare for v2.3.7 (#898)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot 1 year ago
parent
commit
9f1b9ea85a
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.7 (2024-05-11)
+
+### Bug
+
+- Unable to connect Zilliz cloud new severless instances
+- SearchIterator cannot work for Varchar type primary key
+- Fix some minor bugs of SearchIterator
+
 ## milvus-sdk-java 2.3.6 (2024-04-22)
 
 ### Feature

+ 4 - 4
README.md

@@ -19,7 +19,7 @@ The following table shows compatibilities between Milvus and Java SDK.
 |     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.15  |
-|     2.3.x      |      2.3.6       |
+|     2.3.x      |      2.3.7       |
 
 ### Install Java SDK
 
@@ -31,20 +31,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.3.6</version>
+            <version>2.3.7</version>
         </dependency>
        ```
 
    - Gradle/Groovy
 
         ```groovy
-        implementation 'io.milvus:milvus-sdk-java:2.3.6'
+        implementation 'io.milvus:milvus-sdk-java:2.3.7'
         ```
 
    - Gradle/Kotlin
 
         ```kotlin
-        implementation("io.milvus:milvus-sdk-java:2.3.6")
+        implementation("io.milvus:milvus-sdk-java:2.3.7")
         ```
         
 ### Examples

+ 2 - 2
examples/pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.3.6</version>
+    <version>2.3.7</version>
 
     <build>
         <plugins>
@@ -64,7 +64,7 @@
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.3.6</version>
+            <version>2.3.7</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.6</version>
+    <version>2.3.7</version>
     <packaging>jar</packaging>
 
     <name>io.milvus:milvus-sdk-java</name>