|
@@ -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.6 |
|
|
|
-| 2.4.x | 2.4.2 |
|
|
|
+| 2.3.x | 2.3.9 |
|
|
|
+| 2.4.x | 2.4.3 |
|
|
|
|
|
|
### 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.2</version>
|
|
|
+ <version>2.4.3</version>
|
|
|
</dependency>
|
|
|
```
|
|
|
|
|
|
- Gradle/Groovy
|
|
|
|
|
|
```groovy
|
|
|
- implementation 'io.milvus:milvus-sdk-java:2.4.2'
|
|
|
+ implementation 'io.milvus:milvus-sdk-java:2.4.3'
|
|
|
```
|
|
|
|
|
|
- Gradle/Kotlin
|
|
|
|
|
|
```kotlin
|
|
|
- implementation("io.milvus:milvus-sdk-java:2.4.2")
|
|
|
+ implementation("io.milvus:milvus-sdk-java:2.4.3")
|
|
|
```
|
|
|
|
|
|
### Examples
|