Skip to content

Commit

Permalink
Merge pull request #103 from sahuang/master
Browse files Browse the repository at this point in the history
Update to Java SDK 0.8.0
  • Loading branch information
Xiaohai Xu authored May 15, 2020
2 parents 8b71be2 + e3bf71c commit d5fb420
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ You can use **Apache Maven** or **Gradle**/**Grails** to download the SDK.
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>0.7.0</version>
<version>0.8.0</version>
</dependency>
```

- Gradle/Grails

```gradle
compile 'io.milvus:milvus-sdk-java:0.7.0'
compile 'io.milvus:milvus-sdk-java:0.8.0'
```

### Examples
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</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>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<packaging>jar</packaging>

<name>io.milvus:milvus-sdk-java</name>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/io/milvus/client/MilvusClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
/** The Milvus Client Interface */
public interface MilvusClient {

String clientVersion = "0.8.0";
String clientVersion = "0.9.0";

/** @return current Milvus client version: 0.8.0 */
/** @return current Milvus client version: 0.9.0 */
default String getClientVersion() {
return clientVersion;
}
Expand Down

0 comments on commit d5fb420

Please sign in to comment.