Skip to content

Commit

Permalink
Prepare for v2.4.7
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo committed Oct 25, 2024
1 parent 4593838 commit 1e851ff
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Changelog
## milvus-sdk-java 2.4.7 (2024-10-25)

### Improvement
- Support setting properties for V2 CreateCollectionReq
- Support Session consistency level for V1 and V2
- Return entities ids for V2 InsertResp

### Bug
- Fix a RpcDeadline bug for V2

### Feature
- Support flush() interface for V2
- Support compact()/getCompactionState() interfaces for V2

## milvus-sdk-java 2.4.6 (2024-10-18)

### Improvement
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following table shows compatibilities between Milvus and Java SDK.
| 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.11 |
| 2.4.x | 2.4.6 |
| 2.4.x | 2.4.7 |

### Install Java SDK

Expand All @@ -32,20 +32,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.4.6</version>
<version>2.4.7</version>
</dependency>
```

- Gradle/Groovy

```groovy
implementation 'io.milvus:milvus-sdk-java:2.4.6'
implementation 'io.milvus:milvus-sdk-java:2.4.7'
```

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:2.4.6")
implementation("io.milvus:milvus-sdk-java:2.4.7")
```
### 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.4.6</version>
<version>2.4.7</version>

<build>
<plugins>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.4.6</version>
<version>2.4.7</version>
</dependency>
<dependency>
<groupId>org.tensorflow</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.4.6</version>
<version>2.4.7</version>
<packaging>jar</packaging>

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

0 comments on commit 1e851ff

Please sign in to comment.