Skip to content

Commit acfe026

Browse files
authored
Merge pull request #964 from meilisearch/meili-bot/bump-version
Update version for the next release (v0.20.1)
2 parents 9919b11 + 67eaa33 commit acfe026

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.code-samples.meilisearch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -391,14 +391,14 @@ getting_started_add_documents: |-
391391
// <dependency>
392392
// <groupId>com.meilisearch.sdk</groupId>
393393
// <artifactId>meilisearch-java</artifactId>
394-
// <version>0.20.0</version>
394+
// <version>0.20.1</version>
395395
// <type>pom</type>
396396
// </dependency>
397397
398398
// For Gradle
399399
// Add the following line to the `dependencies` section of your `build.gradle`:
400400
//
401-
// implementation 'com.meilisearch.sdk:meilisearch-java:0.20.0'
401+
// implementation 'com.meilisearch.sdk:meilisearch-java:0.20.1'
402402
403403
// In your .java file:
404404
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.20.0</version>
60+
<version>0.20.1</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.20.0'
70+
implementation 'com.meilisearch.sdk:meilisearch-java:0.20.1'
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.20.0'
19+
version = '0.20.1'
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.20.0";
4+
static final String VERSION = "0.20.1";
55

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

0 commit comments

Comments
 (0)