Skip to content

Commit 333a59e

Browse files
committed
Update version for the next release (v0.9.0)
1 parent e59607e commit 333a59e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add the following code to the `<dependencies>` section of your project:
5656
<dependency>
5757
<groupId>com.meilisearch.sdk</groupId>
5858
<artifactId>meilisearch-java</artifactId>
59-
<version>0.8.0</version>
59+
<version>0.9.0</version>
6060
<type>pom</type>
6161
</dependency>
6262
```
@@ -66,7 +66,7 @@ Add the following code to the `<dependencies>` section of your project:
6666
Add the following line to the `dependencies` section of your `build.gradle`:
6767

6868
```groovy
69-
implementation 'com.meilisearch.sdk:meilisearch-java:0.8.0'
69+
implementation 'com.meilisearch.sdk:meilisearch-java:0.9.0'
7070
```
7171

7272
### Run Meilisearch <!-- omit in toc -->

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.8.0'
21+
version = '0.9.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.8.0";
4+
static final String VERSION = "0.9.0";
55

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

0 commit comments

Comments
 (0)