From 2edc79cdfba82479ed1589ebc5dc7dcf931d933a Mon Sep 17 00:00:00 2001 From: Anush008 Date: Tue, 16 Dec 2025 17:43:30 +0530 Subject: [PATCH 1/2] chore: Update gRPC and Protoc versions to 1.75.0 and 3.25.5 Signed-off-by: Anush008 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index ec75730..5958f54 100644 --- a/build.gradle +++ b/build.gradle @@ -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' From c8fd1e0e2be03d07759c29da0a7e992a8f8fef6b Mon Sep 17 00:00:00 2001 From: Anush008 Date: Tue, 16 Dec 2025 17:46:34 +0530 Subject: [PATCH 2/2] chore: Bump package version Signed-off-by: Anush008 --- README.md | 6 +++--- example/build.gradle | 2 +- gradle.properties | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0e46d89..1d7cfde 100644 --- a/README.md +++ b/README.md @@ -38,20 +38,20 @@ To install the library, add the following lines to your build config file. io.qdrant client - 1.16.1 + 1.16.2 ``` #### 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] diff --git a/example/build.gradle b/example/build.gradle index e79263a..9466132 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -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' diff --git a/gradle.properties b/gradle.properties index e760cbf..a8c3f78 100644 --- a/gradle.properties +++ b/gradle.properties @@ -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