diff --git a/CHANGELOG.md b/CHANGELOG.md
index 68e243ee7..60dfef6f3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
# Changelog
+## milvus-sdk-java 2.5.9 (2025-05-09)
+### Feature
+- Support runAnalyzer() interface
+
+### Bug
+- Fix a bug that index property was not correctly passed
+- Fix an exception to LocalBulkWriter in Java 24 env
+
+### Improvement
+- Add dbName for DescribeIndexReq
+- Bump protobuf/protoc version from 3.24.0 to 3.25.5
+- Bump Gson version from 2.10.0 to 2.13.1
+- describeCollection returns collection createUtcTime
+- Add a static method CreateSchema() to replace non-static method createSchema() in MilvusClientV2
+
## milvus-sdk-java 2.5.8 (2025-04-25)
### Feature
- Support getPersistentSegmentInfo/getQuerySegmentInfo interfaces for V2
diff --git a/README.md b/README.md
index eb067a6af..558b53270 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@ The following table shows compatibilities between Milvus and Java SDK.
| >= 2.2.9 | 2.2.7 ~ 2.2.15 |
| 2.3.x | 2.3.11 |
| 2.4.x | 2.4.11 |
-| 2.5.x | 2.5.8 |
+| 2.5.x | 2.5.9 |
### Install Java SDK
@@ -33,20 +33,20 @@ You can use **Apache Maven** or **Gradle** add Milvus SDK to your project.
io.milvus
milvus-sdk-java
- 2.5.8
+ 2.5.9
```
- Gradle/Groovy
```groovy
- implementation 'io.milvus:milvus-sdk-java:2.5.8'
+ implementation 'io.milvus:milvus-sdk-java:2.5.9'
```
- Gradle/Kotlin
```kotlin
- implementation("io.milvus:milvus-sdk-java:2.5.8")
+ implementation("io.milvus:milvus-sdk-java:2.5.9")
```
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.
io.milvus
milvus-sdk-java-bulkwriter
- 2.5.8
+ 2.5.9
```
- Gradle/Groovy
```groovy
- implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.8'
+ implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.9'
```
- Gradle/Kotlin
```kotlin
- implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.8")
+ implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.9")
```
### Examples
diff --git a/examples/pom.xml b/examples/pom.xml
index 2a1af9255..feec10971 100644
--- a/examples/pom.xml
+++ b/examples/pom.xml
@@ -42,7 +42,7 @@
- 2.5.8
+ 2.5.9
UTF-8
diff --git a/pom.xml b/pom.xml
index 793d54bbb..98914c9f1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -68,7 +68,7 @@
- 2.5.8
+ 2.5.9
8
8
UTF-8