Skip to content

Commit d2e37f7

Browse files
authored
Merge pull request #921 from meilisearch/meili-bot/bump-version
Update version for the next release (v0.18.0)
2 parents 8239f10 + a872629 commit d2e37f7

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
@@ -463,14 +463,14 @@ getting_started_add_documents: |-
463463
// <dependency>
464464
// <groupId>com.meilisearch.sdk</groupId>
465465
// <artifactId>meilisearch-java</artifactId>
466-
// <version>0.17.1</version>
466+
// <version>0.18.0</version>
467467
// <type>pom</type>
468468
// </dependency>
469469
470470
// For Gradle
471471
// Add the following line to the `dependencies` section of your `build.gradle`:
472472
//
473-
// implementation 'com.meilisearch.sdk:meilisearch-java:0.17.1'
473+
// implementation 'com.meilisearch.sdk:meilisearch-java:0.18.0'
474474
475475
// In your .java file:
476476
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.17.1</version>
60+
<version>0.18.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.17.1'
70+
implementation 'com.meilisearch.sdk:meilisearch-java:0.18.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.17.1'
19+
version = '0.18.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.17.1";
4+
static final String VERSION = "0.18.0";
55

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

0 commit comments

Comments
 (0)