Skip to content
Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -463,14 +463,14 @@ getting_started_add_documents: |-
// <dependency>
// <groupId>com.meilisearch.sdk</groupId>
// <artifactId>meilisearch-java</artifactId>
// <version>0.15.0</version>
// <version>0.16.0</version>
// <type>pom</type>
// </dependency>

// For Gradle
// Add the following line to the `dependencies` section of your `build.gradle`:
//
// implementation 'com.meilisearch.sdk:meilisearch-java:0.15.0'
// implementation 'com.meilisearch.sdk:meilisearch-java:0.16.0'

// In your .java file:
import com.meilisearch.sdk;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Add the following code to the `<dependencies>` section of your project:
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.15.0</version>
<version>0.16.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -68,7 +68,7 @@ Add the following code to the `<dependencies>` section of your project:
Add the following line to the `dependencies` section of your `build.gradle`:

```groovy
implementation 'com.meilisearch.sdk:meilisearch-java:0.15.0'
implementation 'com.meilisearch.sdk:meilisearch-java:0.16.0'
```

:warning: `meilisearch-java` also requires `okhttp` as a peer dependency.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ plugins {

group = 'com.meilisearch.sdk'
archivesBaseName = 'meilisearch-java'
version = '0.15.0'
version = '0.16.0'

jacoco {
toolVersion = "0.8.8"
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/meilisearch/sdk/Version.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.meilisearch.sdk;

public class Version {
static final String VERSION = "0.15.0";
static final String VERSION = "0.16.0";

public static String getQualifiedVersion() {
return "Meilisearch Java (v" + VERSION + ")";
Expand Down