Skip to content

Commit c80c42b

Browse files
Merge #870
870: Update version for the next release (v0.15.0) r=brunoocasali a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-java to a new version: "v0.15.0" Co-authored-by: meili-bot <[email protected]>
2 parents 938391e + 15bf3dc commit c80c42b

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,14 +459,14 @@ getting_started_add_documents: |-
459459
// <dependency>
460460
// <groupId>com.meilisearch.sdk</groupId>
461461
// <artifactId>meilisearch-java</artifactId>
462-
// <version>0.14.7</version>
462+
// <version>0.15.0</version>
463463
// <type>pom</type>
464464
// </dependency>
465465
466466
// For Gradle
467467
// Add the following line to the `dependencies` section of your `build.gradle`:
468468
//
469-
// implementation 'com.meilisearch.sdk:meilisearch-java:0.14.7'
469+
// implementation 'com.meilisearch.sdk:meilisearch-java:0.15.0'
470470
471471
// In your .java file:
472472
import com.meilisearch.sdk;

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.7</version>
61+
<version>0.15.0</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.7'
71+
implementation 'com.meilisearch.sdk:meilisearch-java:0.15.0'
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.7'
21+
version = '0.15.0'
2222

2323
jacoco {
2424
toolVersion = "0.8.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.7";
4+
static final String VERSION = "0.15.0";
55

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

0 commit comments

Comments
 (0)