Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotschi committed Feb 7, 2023
1 parent 0e353e6 commit b2cbbd3
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This project contains a java client for the [Qdrant vector database](https://qdr
<dependency>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-grpc-client</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
```

Expand All @@ -46,7 +46,7 @@ or for the HTTP client
<dependency>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-http-client</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
</dependency>
```

Expand Down Expand Up @@ -149,7 +149,7 @@ try (QDrantHttpClient client = QDrantHttpClient.builder()
## Release Process

```bash
# Update maven version to next release
# Update maven version to next release + Update jreleaser.yml version
mvn versions:set -DgenerateBackupPoms=false

# Now run tests locally or via GitHub actions
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.10.0</version>
</parent>

<name>Qdrant Java Client :: common</name>
Expand Down
2 changes: 1 addition & 1 deletion grpc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.10.0</version>
</parent>

<name>Qdrant Java Client :: grpc</name>
Expand Down
2 changes: 1 addition & 1 deletion http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.10.0</version>
</parent>

<name>Qdrant Java Client :: http</name>
Expand Down
5 changes: 3 additions & 2 deletions jreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
project:
name: qdrant-java-client
version: 0.9.0
version: 0.10.0
versionPattern: SEMVER

description: Qdrant Java Client
longDescription: |
Java client for REST / gRPC connections to the Qdrant vector database
website: https://github.com/metaloom/qdrant-java-client
links:
homepage: https://github.com/metaloom/qdrant-java-client
authors:
- Johannes Schüth
license: Apache-2.0
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.10.0</version>

<parent>
<groupId>io.metaloom</groupId>
Expand Down
2 changes: 1 addition & 1 deletion report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>io.metaloom.qdrant</groupId>
<artifactId>qdrant-java-client</artifactId>
<version>0.10.0-SNAPSHOT</version>
<version>0.10.0</version>
</parent>

<name>Qdrant Java Client :: report</name>
Expand Down

0 comments on commit b2cbbd3

Please sign in to comment.