Skip to content

Commit

Permalink
Prepare for 2.3.3 (#698)
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo committed Nov 8, 2023
1 parent 503a5db commit 05dec28
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## milvus-sdk-java 2.3.3 (2023-11-08)

### Feature

- Support resource group interfaces

## milvus-sdk-java 2.3.2 (2023-10-25)

### 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.14 |
| 2.3.x | 2.3.2 |
| 2.3.x | 2.3.3 |

### 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.2</version>
<version>2.3.3</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java:2.3.2'
implementation 'io.milvus:milvus-sdk-java:2.3.3'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:2.3.2")
implementation("io.milvus:milvus-sdk-java:2.3.3")
```
### Examples
Expand Down
4 changes: 2 additions & 2 deletions examples/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-examples</artifactId>
<version>2.3.2</version>
<version>2.3.3</version>

<build>
<plugins>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.3.2</version>
<version>2.3.3</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</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.2</version>
<version>2.3.3</version>
<packaging>jar</packaging>

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

0 comments on commit 05dec28

Please sign in to comment.