Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ To install the library, add the following lines to your build config file.
<dependency>
<groupId>io.qdrant</groupId>
<artifactId>client</artifactId>
<version>1.16.1</version>
<version>1.16.2</version>
</dependency>
```

#### SBT

```sbt
libraryDependencies += "io.qdrant" % "client" % "1.16.1"
libraryDependencies += "io.qdrant" % "client" % "1.16.2"
```

#### Gradle

```gradle
implementation 'io.qdrant:client:1.16.1'
implementation 'io.qdrant:client:1.16.2'
```

> [!NOTE]
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ jar {
}
}

def grpcVersion = '1.68.2'
def protocVersion = '3.25.4'
def grpcVersion = '1.75.0'
def protocVersion = '3.25.5'
def slf4jVersion = '2.0.14'
def testcontainersVersion = '1.20.1'
def jUnitVersion = '5.10.2'
Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repositories {

dependencies {
// Qdrant Java client
implementation 'io.qdrant:client:1.16.1'
implementation 'io.qdrant:client:1.16.2'

// gRPC dependencies - use the same version as Qdrant client
implementation 'io.grpc:grpc-netty-shaded:1.65.1'
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.16.0
qdrantProtosVersion=v1.16.2

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

# The version of the client to generate
packageVersion=1.16.1
packageVersion=1.16.2
Loading