Skip to content

Commit 43252b6

Browse files
Merge #829
829: Update version for the next release (v0.14.3) 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.3" Co-authored-by: meili-bot <[email protected]>
2 parents f45250a + d2c024f commit 43252b6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.code-samples.meilisearch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,15 +459,15 @@ getting_started_add_documents_md: |-
459459
<dependency>
460460
<groupId>com.meilisearch.sdk</groupId>
461461
<artifactId>meilisearch-java</artifactId>
462-
<version>0.14.2</version>
462+
<version>0.14.3</version>
463463
<type>pom</type>
464464
</dependency>
465465
```
466466
467467
**Gradle**
468468
Add the following line to the `dependencies` section of your `build.gradle`:
469469
```groovy
470-
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.2'
470+
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.3'
471471
```
472472
473473
```java

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Add the following code to the `<dependencies>` section of your project:
5858
<dependency>
5959
<groupId>com.meilisearch.sdk</groupId>
6060
<artifactId>meilisearch-java</artifactId>
61-
<version>0.14.2</version>
61+
<version>0.14.3</version>
6262
<type>pom</type>
6363
</dependency>
6464
```
@@ -68,7 +68,7 @@ Add the following code to the `<dependencies>` section of your project:
6868
Add the following line to the `dependencies` section of your `build.gradle`:
6969

7070
```groovy
71-
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.2'
71+
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.3'
7272
```
7373

7474
:warning: `meilisearch-java` also requires `okhttp` as a peer dependency.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ plugins {
1818

1919
group = 'com.meilisearch.sdk'
2020
archivesBaseName = 'meilisearch-java'
21-
version = '0.14.2'
21+
version = '0.14.3'
2222

2323
java {
2424
sourceCompatibility = JavaVersion.VERSION_1_8

src/main/java/com/meilisearch/sdk/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.meilisearch.sdk;
22

33
public class Version {
4-
static final String VERSION = "0.14.2";
4+
static final String VERSION = "0.14.3";
55

66
public static String getQualifiedVersion() {
77
return "Meilisearch Java (v" + VERSION + ")";

0 commit comments

Comments
 (0)