File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
src/main/java/com/meilisearch/sdk Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -455,15 +455,15 @@ getting_started_add_documents_md: |-
455455 <dependency>
456456 <groupId>com.meilisearch.sdk</groupId>
457457 <artifactId>meilisearch-java</artifactId>
458- <version>0.8 .0</version>
458+ <version>0.9 .0</version>
459459 <type>pom</type>
460460 </dependency>
461461 ```
462462
463463 **Gradle**
464464 Add the following line to the `dependencies` section of your `build.gradle`:
465465 ```groovy
466- implementation 'com.meilisearch.sdk:meilisearch-java:0.8 .0'
466+ implementation 'com.meilisearch.sdk:meilisearch-java:0.9 .0'
467467 ```
468468
469469 ```java
Original file line number Diff line number Diff 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:
6666Add 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 -->
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ plugins {
1818
1919group = ' com.meilisearch.sdk'
2020archivesBaseName = ' meilisearch-java'
21- version = ' 0.8 .0'
21+ version = ' 0.9 .0'
2222
2323java {
2424 sourceCompatibility = JavaVersion . VERSION_1_8
Original file line number Diff line number Diff line change 11package com .meilisearch .sdk ;
22
33public 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 + ")" ;
You can’t perform that action at this time.
0 commit comments