Skip to content

Commit 30d3d60

Browse files
authored
Merge pull request #930 from meilisearch/meili-bot/bump-version
Update version for the next release (v0.19.0)
2 parents 7082fcd + b60e247 commit 30d3d60

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
@@ -480,14 +480,14 @@ getting_started_add_documents: |-
480480
// <dependency>
481481
// <groupId>com.meilisearch.sdk</groupId>
482482
// <artifactId>meilisearch-java</artifactId>
483-
// <version>0.18.0</version>
483+
// <version>0.19.0</version>
484484
// <type>pom</type>
485485
// </dependency>
486486
487487
// For Gradle
488488
// Add the following line to the `dependencies` section of your `build.gradle`:
489489
//
490-
// implementation 'com.meilisearch.sdk:meilisearch-java:0.18.0'
490+
// implementation 'com.meilisearch.sdk:meilisearch-java:0.19.0'
491491
492492
// In your .java file:
493493
import com.meilisearch.sdk;

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Add the following code to the `<dependencies>` section of your project:
5757
<dependency>
5858
<groupId>com.meilisearch.sdk</groupId>
5959
<artifactId>meilisearch-java</artifactId>
60-
<version>0.18.0</version>
60+
<version>0.19.0</version>
6161
<type>pom</type>
6262
</dependency>
6363
```
@@ -67,7 +67,7 @@ Add the following code to the `<dependencies>` section of your project:
6767
Add the following line to the `dependencies` section of your `build.gradle`:
6868

6969
```groovy
70-
implementation 'com.meilisearch.sdk:meilisearch-java:0.18.0'
70+
implementation 'com.meilisearch.sdk:meilisearch-java:0.19.0'
7171
```
7272

7373
: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
@@ -16,7 +16,7 @@ plugins {
1616
}
1717

1818
group = 'com.meilisearch.sdk'
19-
version = '0.18.0'
19+
version = '0.19.0'
2020

2121
base {
2222
archivesName.set('meilisearch-java')

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.18.0";
4+
static final String VERSION = "0.19.0";
55

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

0 commit comments

Comments
 (0)