Browse Source

Feature/2.2.2 (#418)

* fix search param offset not avaliable bug

Signed-off-by: “yelusion” <xun.huang@zilliz.com>

* Bump jackson-databind from 2.10.1 to 2.12.7.1 (#416)

Bumps [jackson-databind](https://github.com/FasterXML/jackson) from 2.10.1 to 2.12.7.1.
- [Release notes](https://github.com/FasterXML/jackson/releases)
- [Commits](https://github.com/FasterXML/jackson/commits)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* upgrade java sdk version to 2.2.2

Signed-off-by: “yelusion” <xun.huang@zilliz.com>

---------

Signed-off-by: “yelusion” <xun.huang@zilliz.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
yelusion 2 years ago
parent
commit
9266f01ac7
4 changed files with 13 additions and 6 deletions
  1. 3 3
      README.md
  2. 8 1
      examples/pom.xml
  3. 1 1
      pom.xml
  4. 1 1
      tests/milvustest/pom.xml

+ 3 - 3
README.md

@@ -17,7 +17,7 @@ The following table shows compatibilities between Milvus and Java SDK.
 | :------------: |:----------------:|
 |     2.0      |      2.0.4       |
 |     2.1      |   2.1.0-beta4    |
-|     2.2      |      2.2.1       |
+|     2.2      |     2.2.2        |
 
 ### Install Java SDK
 
@@ -29,14 +29,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.1</version>
+            <version>2.2.2</version>
         </dependency>
        ```
 
    - Gradle/Grails
 
         ```gradle
-        compile 'io.milvus:milvus-sdk-java:2.2.1'
+        compile 'io.milvus:milvus-sdk-java:2.2.2'
         ```
 
 ### Examples

+ 8 - 1
examples/pom.xml

@@ -22,10 +22,17 @@
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>io.milvus</groupId>
+        <artifactId>milvus-sdk-java</artifactId>
+        <version>2.2.2</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java-examples</artifactId>
-    <version>2.2.1</version>
+    <version>2.2.2</version>
+
     <build>
         <plugins>
             <plugin>

+ 1 - 1
pom.xml

@@ -25,7 +25,7 @@
 
     <groupId>io.milvus</groupId>
     <artifactId>milvus-sdk-java</artifactId>
-    <version>2.2.1</version>
+    <version>2.2.2</version>
     <packaging>jar</packaging>
 
     <name>io.milvus:milvus-sdk-java</name>

+ 1 - 1
tests/milvustest/pom.xml

@@ -84,7 +84,7 @@
         <dependency>
             <groupId>io.milvus</groupId>
             <artifactId>milvus-sdk-java</artifactId>
-            <version>2.2.0-beta1</version>
+            <version>2.2.2</version>
         </dependency>
         <!--Allure-->
         <dependency>