Răsfoiți Sursa

Prepare for v2.4.11 (#1368)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
groot 3 săptămâni în urmă
părinte
comite
ef74d6449b
4 a modificat fișierele cu 12 adăugiri și 7 ștergeri
  1. 5 0
      CHANGELOG.md
  2. 4 4
      README.md
  3. 2 2
      examples/pom.xml
  4. 1 1
      pom.xml

+ 5 - 0
CHANGELOG.md

@@ -1,5 +1,10 @@
 # Changelog
 
+## milvus-sdk-java 2.4.11 (2025-04-09)
+### Bug
+- Fix a bug that consistency level is missed for createCollection()
+- Return shards_num for describeCollection()
+
 ## milvus-sdk-java 2.4.10 (2024-12-31)
 ### Feature
 - Support alterCollectionField interface for V2

+ 4 - 4
README.md

@@ -20,7 +20,7 @@ The following table shows compatibilities between Milvus and Java SDK.
 | 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.11      |
-|     2.4.x      |      2.4.10      |
+|     2.4.x      |      2.4.11      |
 
 ### 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.10</version>
+            <version>2.4.11</version>
         </dependency>
        ```
 
    - Gradle/Groovy
 
         ```groovy
-        implementation 'io.milvus:milvus-sdk-java:2.4.10'
+        implementation 'io.milvus:milvus-sdk-java:2.4.11'
         ```
 
    - Gradle/Kotlin
 
         ```kotlin
-        implementation("io.milvus:milvus-sdk-java:2.4.10")
+        implementation("io.milvus:milvus-sdk-java:2.4.11")
         ```
         
 ### Examples

+ 2 - 2
examples/pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.4.10</version>
+    <version>2.4.11</version>
 
     <build>
         <plugins>
@@ -64,7 +64,7 @@
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.4.10</version>
+            <version>2.4.11</version>
         </dependency>
         <dependency>
             <groupId>org.tensorflow</groupId>

+ 1 - 1
pom.xml

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