Skip to content

Commit a3f7d2f

Browse files
authored
Prepare for v2.6.3 (#1551)
Signed-off-by: yhmo <yihua.mo@zilliz.com>
1 parent b4bcda7 commit a3f7d2f

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## milvus-sdk-java 2.6.3 (2025-08-20)
4+
### Improvement
5+
- Support stageManager & stageFileManager
6+
37
## milvus-sdk-java 2.6.2 (2025-08-14)
48
### Improvement
59
- Alias interface support database

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The following table shows compatibilities between Milvus and Java SDK.
2222
| 2.3.x | 2.3.11 |
2323
| 2.4.x | 2.4.11 |
2424
| 2.5.x | 2.5.12 |
25-
| 2.6.x | 2.6.2 |
25+
| 2.6.x | 2.6.3 |
2626

2727
### Install Java SDK
2828

@@ -34,20 +34,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
3434
<dependency>
3535
<groupId>io.milvus</groupId>
3636
<artifactId>milvus-sdk-java</artifactId>
37-
<version>2.6.2</version>
37+
<version>2.6.3</version>
3838
</dependency>
3939
```
4040

4141
- Gradle/Groovy
4242

4343
```groovy
44-
implementation 'io.milvus:milvus-sdk-java:2.6.2'
44+
implementation 'io.milvus:milvus-sdk-java:2.6.3'
4545
```
4646

4747
- Gradle/Kotlin
4848

4949
```kotlin
50-
implementation("io.milvus:milvus-sdk-java:2.6.2")
50+
implementation("io.milvus:milvus-sdk-java:2.6.3")
5151
```
5252

5353
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.
@@ -59,20 +59,20 @@ To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.
5959
<dependency>
6060
<groupId>io.milvus</groupId>
6161
<artifactId>milvus-sdk-java-bulkwriter</artifactId>
62-
<version>2.6.2</version>
62+
<version>2.6.3</version>
6363
</dependency>
6464
```
6565

6666
- Gradle/Groovy
6767

6868
```groovy
69-
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.2'
69+
implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.6.3'
7070
```
7171

7272
- Gradle/Kotlin
7373

7474
```kotlin
75-
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.2")
75+
implementation("io.milvus:milvus-sdk-java-bulkwriter:2.6.3")
7676
```
7777

7878
### Examples

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</build>
4343

4444
<properties>
45-
<revision>2.6.2</revision>
45+
<revision>2.6.3</revision>
4646
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4747
</properties>
4848

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
</repositories>
8383

8484
<properties>
85-
<revision>2.6.2</revision>
85+
<revision>2.6.3</revision>
8686
<maven.compiler.source>8</maven.compiler.source>
8787
<maven.compiler.target>8</maven.compiler.target>
8888
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

0 commit comments

Comments
 (0)