Skip to content

Commit

Permalink
v1.9.0 (#29)
Browse files Browse the repository at this point in the history
* v1.9.0

* Bump Qdrant version to 1.9.0

* test: Update API key test

---------

Co-authored-by: timvisee <tim@visee.me>
  • Loading branch information
Anush008 and timvisee authored Apr 22, 2024
1 parent 803a428 commit cf1c3af
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@ To install the library, add the following lines to your build config file.
<dependency>
<groupId>io.qdrant</groupId>
<artifactId>client</artifactId>
<version>1.7.2</version>
<version>1.9.0</version>
</dependency>
```

#### SBT

```sbt
libraryDependencies += "io.qdrant" % "client" % "1.7.2"
libraryDependencies += "io.qdrant" % "client" % "1.9.0"
```

#### Gradle

```gradle
implementation 'io.qdrant:client:1.7.2'
implementation 'io.qdrant:client:1.9.0'
```

## 📖 Documentation
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# The version of qdrant to use to download protos
qdrantProtosVersion=v1.8.0
qdrantProtosVersion=v1.9.0

# The version of qdrant docker image to run integration tests against
qdrantVersion=v1.8.0
qdrantVersion=v1.9.0

# The version of the client to generate
packageVersion=1.8.1
packageVersion=1.9.0
2 changes: 1 addition & 1 deletion src/test/java/io/qdrant/client/ApiKeyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void client_without_api_key_cannot_connect() {
Throwable cause = executionException.getCause();
assertEquals(StatusRuntimeException.class, cause.getClass());
StatusRuntimeException statusRuntimeException = (StatusRuntimeException) cause;
assertEquals(Status.Code.PERMISSION_DENIED, statusRuntimeException.getStatus().getCode());
assertEquals(Status.Code.UNAUTHENTICATED, statusRuntimeException.getStatus().getCode());
}
}
}

0 comments on commit cf1c3af

Please sign in to comment.