From b290b14892534fc0d76893d41b8f656855cd589b Mon Sep 17 00:00:00 2001 From: Anush Date: Mon, 17 Nov 2025 18:41:16 +0530 Subject: [PATCH 1/2] docs: Updated README.md (#90) Signed-off-by: Anush008 --- README.md | 6 +++--- example/build.gradle | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4d95460..3548c59 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.15.0 + 1.16.0 ``` #### SBT ```sbt -libraryDependencies += "io.qdrant" % "client" % "1.15.0" +libraryDependencies += "io.qdrant" % "client" % "1.16.0" ``` #### Gradle ```gradle -implementation 'io.qdrant:client:1.15.0' +implementation 'io.qdrant:client:1.16.0' ``` > [!NOTE] diff --git a/example/build.gradle b/example/build.gradle index 4298fec..bc387ec 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -13,7 +13,7 @@ repositories { dependencies { // Qdrant Java client - implementation 'io.qdrant:client:1.15.0' + implementation 'io.qdrant:client:1.16.0' // gRPC dependencies - use the same version as Qdrant client implementation 'io.grpc:grpc-netty-shaded:1.65.1' From d6f75cee6fbf282e2db99914c5d56687fadcf145 Mon Sep 17 00:00:00 2001 From: Anush Date: Mon, 24 Nov 2025 21:58:55 +0530 Subject: [PATCH 2/2] fix: change gRPC dependencies from implementation to api (#93) Signed-off-by: Anush008 --- README.md | 6 +++--- build.gradle | 4 ++-- example/build.gradle | 2 +- gradle.properties | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3548c59..0e46d89 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.0 + 1.16.1 ``` #### SBT ```sbt -libraryDependencies += "io.qdrant" % "client" % "1.16.0" +libraryDependencies += "io.qdrant" % "client" % "1.16.1" ``` #### Gradle ```gradle -implementation 'io.qdrant:client:1.16.0' +implementation 'io.qdrant:client:1.16.1' ``` > [!NOTE] diff --git a/build.gradle b/build.gradle index 18aa513..ec75730 100644 --- a/build.gradle +++ b/build.gradle @@ -88,8 +88,8 @@ def jUnitVersion = '5.10.2' dependencies { errorprone "com.uber.nullaway:nullaway:0.10.18" - implementation "io.grpc:grpc-protobuf:${grpcVersion}" - implementation "io.grpc:grpc-stub:${grpcVersion}" + api "io.grpc:grpc-protobuf:${grpcVersion}" + api "io.grpc:grpc-stub:${grpcVersion}" implementation "org.slf4j:slf4j-api:${slf4jVersion}" compileOnly "org.apache.tomcat:annotations-api:6.0.53" diff --git a/example/build.gradle b/example/build.gradle index bc387ec..e79263a 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -13,7 +13,7 @@ repositories { dependencies { // Qdrant Java client - implementation 'io.qdrant:client:1.16.0' + implementation 'io.qdrant:client:1.16.1' // 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 b4ca498..e760cbf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,4 +5,4 @@ qdrantProtosVersion=v1.16.0 qdrantVersion=v1.16.0 # The version of the client to generate -packageVersion=1.16.0 +packageVersion=1.16.1