Browse Source

Prepare for v2.4.6 (#1123)

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

+ 10 - 0
CHANGELOG.md

@@ -1,4 +1,14 @@
 # Changelog
+
+## milvus-sdk-java 2.4.6 (2024-10-18)
+
+### Improvement
+- Refine BulkWriter/BulkImport interfaces
+- Remove Jackson dependency
+
+### Bug
+- Fix "one second timeout issue" of pre-connection
+
 ## milvus-sdk-java 2.4.5 (2024-10-11)
 
 ### Feature

+ 5 - 5
README.md

@@ -19,8 +19,8 @@ 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.10      |
-|     2.4.x      |      2.4.5       |
+|     2.3.x      |      2.3.11      |
+|     2.4.x      |      2.4.6       |
 
 ### Install Java SDK
 
@@ -32,20 +32,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.4.5</version>
+            <version>2.4.6</version>
         </dependency>
        ```
 
    - Gradle/Groovy
 
         ```groovy
-        implementation 'io.milvus:milvus-sdk-java:2.4.5'
+        implementation 'io.milvus:milvus-sdk-java:2.4.6'
         ```
 
    - Gradle/Kotlin
 
         ```kotlin
-        implementation("io.milvus:milvus-sdk-java:2.4.5")
+        implementation("io.milvus:milvus-sdk-java:2.4.6")
         ```
         
 ### Examples

+ 1 - 1
examples/pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.4.5</version>
+    <version>2.4.6</version>
 
     <build>
         <plugins>

+ 1 - 1
pom.xml

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