Skip to content

Commit 9d8616d

Browse files
Merge #763
763: Update version for the next release (v0.14.0) 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.0" Co-authored-by: meili-bot <[email protected]>
2 parents cf7732e + 0bfdc76 commit 9d8616d

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.13.0</version>
462+
<version>0.14.0</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.13.0'
470+
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.0'
471471
```
472472
473473
```java

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Add the following code to the `<dependencies>` section of your project:
6363
<dependency>
6464
<groupId>com.meilisearch.sdk</groupId>
6565
<artifactId>meilisearch-java</artifactId>
66-
<version>0.13.0</version>
66+
<version>0.14.0</version>
6767
<type>pom</type>
6868
</dependency>
6969
```
@@ -73,7 +73,7 @@ Add the following code to the `<dependencies>` section of your project:
7373
Add the following line to the `dependencies` section of your `build.gradle`:
7474

7575
```groovy
76-
implementation 'com.meilisearch.sdk:meilisearch-java:0.13.0'
76+
implementation 'com.meilisearch.sdk:meilisearch-java:0.14.0'
7777
```
7878

7979
: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.13.0'
21+
version = '0.14.0'
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.13.0";
4+
static final String VERSION = "0.14.0";
55

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

0 commit comments

Comments
 (0)