Skip to content

Commit

Permalink
Prepare for v2.3.10 (#1071)
Browse files Browse the repository at this point in the history
Signed-off-by: yhmo <[email protected]>
  • Loading branch information
yhmo authored Sep 19, 2024
1 parent 9cab9c8 commit 8db9a73
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Changelog
## milvus-sdk-java 2.3.10 (2024-09-19)

### Improvement
- Improve usability of CreateCollectionReq
- Check connection when MilvusClientV2 is initialized
- Reduce time-consuming log of search/insert/upsert for MilvusClientV1

### Bug
- Fix a bug or QueryIterator with special expression

## milvus-sdk-java 2.3.9 (2024-08-09)

### 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.9 |
| 2.3.x | 2.3.10 |

### 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.9</version>
<version>2.3.10</version>
</dependency>
```

- Gradle/Groovy

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

- Gradle/Kotlin

```kotlin
implementation("io.milvus:milvus-sdk-java:2.3.9")
implementation("io.milvus:milvus-sdk-java:2.3.10")
```
### Examples
Expand Down
2 changes: 1 addition & 1 deletion examples/main/java/io/milvus/v1/ClientPoolExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public static Thread runSearchThread(MilvusClientV1Pool pool, String clientName,
.withCollectionName(CollectionName)
.withMetricType(MetricType.L2)
.withTopK(10)
.withFloatVectors(Collections.singletonList(CommonUtils.generateFloatVector(DIM)))
.withVectors(Collections.singletonList(CommonUtils.generateFloatVector(DIM)))
.withVectorFieldName(VectorFieldName)
.withParams("{}")
.withConsistencyLevel(ConsistencyLevelEnum.EVENTUALLY)
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.8</version>
<version>2.3.10</version>

<build>
<plugins>
Expand Down Expand Up @@ -64,7 +64,7 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>2.3.9</version>
<version>2.3.10</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down
4 changes: 2 additions & 2 deletions 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.9</version>
<version>2.3.10</version>
<packaging>jar</packaging>

<name>io.milvus:milvus-sdk-java</name>
Expand Down Expand Up @@ -421,7 +421,7 @@
<artifactId>maven-javadoc-plugin</artifactId>
<version>${maven.javadoc.plugin.version}</version>
<configuration>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
<javadocExecutable>/usr/bin/javadoc</javadocExecutable>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 8db9a73

Please sign in to comment.