Skip to content

Commit

Permalink
Prepare for 2.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo committed Aug 17, 2023
1 parent 89073bd commit ed865e8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## milvus-sdk-java 2.3.0 (TBD)

### Feature

- Support Upsert interface
- New GPU index type(only works when server is GPU mode): GPU_IVF_FLAT, GPU_IVF_PQ

### Deprecated

- No longer support index: ANNOY, RHNSW_FLAT, RHNSW_PQ, RHNSW_SQ
- No longer support metric: TANIMOTO, SUPERSTRUCTURE, SUBSTRUCTURE

## milvus-sdk-java 2.2.12 (2023-08-10)

### Improvement
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +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.12 |
| 2.3.0 | 2.3.0 |

### Install Java SDK

Expand All @@ -30,14 +31,14 @@ You can use **Apache Maven** or **Gradle**/**Grails** to download the SDK.
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.2.12</version>
<version>2.3.0</version>
</dependency>
```

- Gradle/Grails

```gradle
compile 'io.milvus:milvus-sdk-java:2.2.12'
compile 'io.milvus:milvus-sdk-java:2.3.0'
```

### Examples
Expand Down

0 comments on commit ed865e8

Please sign in to comment.