Skip to content

Commit

Permalink
Prepare for v2.3.9 (#1033)
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo authored Aug 8, 2024
1 parent a191b8d commit 5d6fc0f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
# Changelog
## milvus-sdk-java 2.3.9 (2024-08-09)

### Feature
- Implement database related interfaces including createDatabase/dropDatabase/listDatabases for MilvusClientV2
- Implement getServerVersion interface for MilvusClientV2
- Provide client/connection pool for V1 and V2

### Improvement
- Implement retry machinery for MilvusClientV2

### Bug
- Fix thread-safe bug of insert/upsert interfaces for MilvusClientV2

## milvus-sdk-java 2.3.8 (2024-07-11)

### Feature
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ 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.8 |
| 2.3.x | 2.3.9 |

### Install Java SDK

Expand All @@ -31,20 +31,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.3.8</version>
<version>2.3.9</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java:2.3.8'
implementation 'io.milvus:milvus-sdk-java:2.3.9'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:2.3.8")
implementation("io.milvus:milvus-sdk-java:2.3.9")
```
### Examples
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.3.8</version>
<version>2.3.9</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.3.8</version>
<version>2.3.9</version>
<packaging>jar</packaging>

<name>io.milvus:milvus-sdk-java</name>
Expand Down

0 comments on commit 5d6fc0f

Please sign in to comment.