Skip to content

Commit cf1c3af

Browse files
Anush008timvisee
andauthored
v1.9.0 (#29)
* v1.9.0 * Bump Qdrant version to 1.9.0 * test: Update API key test --------- Co-authored-by: timvisee <[email protected]>
1 parent 803a428 commit cf1c3af

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,20 @@ To install the library, add the following lines to your build config file.
3434
<dependency>
3535
<groupId>io.qdrant</groupId>
3636
<artifactId>client</artifactId>
37-
<version>1.7.2</version>
37+
<version>1.9.0</version>
3838
</dependency>
3939
```
4040

4141
#### SBT
4242

4343
```sbt
44-
libraryDependencies += "io.qdrant" % "client" % "1.7.2"
44+
libraryDependencies += "io.qdrant" % "client" % "1.9.0"
4545
```
4646

4747
#### Gradle
4848

4949
```gradle
50-
implementation 'io.qdrant:client:1.7.2'
50+
implementation 'io.qdrant:client:1.9.0'
5151
```
5252

5353
## 📖 Documentation

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# The version of qdrant to use to download protos
2-
qdrantProtosVersion=v1.8.0
2+
qdrantProtosVersion=v1.9.0
33

44
# The version of qdrant docker image to run integration tests against
5-
qdrantVersion=v1.8.0
5+
qdrantVersion=v1.9.0
66

77
# The version of the client to generate
8-
packageVersion=1.8.1
8+
packageVersion=1.9.0

src/test/java/io/qdrant/client/ApiKeyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void client_without_api_key_cannot_connect() {
6161
Throwable cause = executionException.getCause();
6262
assertEquals(StatusRuntimeException.class, cause.getClass());
6363
StatusRuntimeException statusRuntimeException = (StatusRuntimeException) cause;
64-
assertEquals(Status.Code.PERMISSION_DENIED, statusRuntimeException.getStatus().getCode());
64+
assertEquals(Status.Code.UNAUTHENTICATED, statusRuntimeException.getStatus().getCode());
6565
}
6666
}
6767
}

0 commit comments

Comments
 (0)