Skip to content

Commit

Permalink
Merge #784
Browse files Browse the repository at this point in the history
784: Update version for the next release (v0.14.1) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-java to a new version: "v0.14.1"


Co-authored-by: meili-bot <[email protected]>
  • Loading branch information
meili-bors[bot] and meili-bot authored Oct 3, 2024
2 parents 1746603 + a271045 commit a82293b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -459,15 +459,15 @@ getting_started_add_documents_md: |-
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.14.0</version>
<version>0.14.1</version>
<type>pom</type>
</dependency>
```
**Gradle**
Add the following line to the `dependencies` section of your `build.gradle`:
```groovy
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.0'
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.1'
```
```java
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Add the following code to the `<dependencies>` section of your project:
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.14.0</version>
<version>0.14.1</version>
<type>pom</type>
</dependency>
```
Expand All @@ -73,7 +73,7 @@ Add the following code to the `<dependencies>` section of your project:
Add the following line to the `dependencies` section of your `build.gradle`:

```groovy
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.0'
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.1'
```

:warning: `meilisearch-java` also requires `okhttp` as a peer dependency.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

group = 'com.meilisearch.sdk'
archivesBaseName = 'meilisearch-java'
version = '0.14.0'
version = '0.14.1'

java {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/meilisearch/sdk/Version.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.meilisearch.sdk;

public class Version {
static final String VERSION = "0.14.0";
static final String VERSION = "0.14.1";

public static String getQualifiedVersion() {
return "Meilisearch Java (v" + VERSION + ")";
Expand Down

0 comments on commit a82293b

Please sign in to comment.