You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ The following table shows compatibilities between Milvus and Java SDK.
20
20
| 2.2.0 ~ 2.2.8 | 2.2.0 ~ 2.2.5 |
21
21
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
22
22
| 2.3.x | 2.3.11 |
23
-
| 2.4.x | 2.4.8 |
24
-
| 2.5.x | 2.5.2|
23
+
| 2.4.x | 2.4.10|
24
+
| 2.5.x | 2.5.3|
25
25
26
26
### Install Java SDK
27
27
@@ -33,20 +33,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
33
33
<dependency>
34
34
<groupId>io.milvus</groupId>
35
35
<artifactId>milvus-sdk-java</artifactId>
36
-
<version>2.5.2</version>
36
+
<version>2.5.3</version>
37
37
</dependency>
38
38
```
39
39
40
40
- Gradle/Groovy
41
41
42
42
```groovy
43
-
implementation 'io.milvus:milvus-sdk-java:2.5.2'
43
+
implementation 'io.milvus:milvus-sdk-java:2.5.3'
44
44
```
45
45
46
46
- Gradle/Kotlin
47
47
48
48
```kotlin
49
-
implementation("io.milvus:milvus-sdk-java:2.5.2")
49
+
implementation("io.milvus:milvus-sdk-java:2.5.3")
50
50
```
51
51
52
52
From v2.5.2, milvus Java SDK is split into two packages: milvus-sdk-java and milvus-sdk-java-bulkwriter, because BulkWriter requires quite a lot of dependencies. If you don't need BulkWriter tool, you can ignore the milvus-sdk-java-bulkwriter package.
@@ -58,20 +58,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
0 commit comments