Skip to content

Commit

Permalink
Merge #703
Browse files Browse the repository at this point in the history
703: Update version for the next release (v0.11.6) r=curquiza a=meili-bot

_This PR is auto-generated._

The automated script updates the version of meilisearch-java to a new version: "v0.11.6"


Co-authored-by: meili-bot <[email protected]>
Co-authored-by: Clémentine U. - curqui <[email protected]>
  • Loading branch information
3 people authored Jan 17, 2024
2 parents 9a0f044 + b04e2dc commit ecce4d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -408,15 +408,15 @@ getting_started_add_documents_md: |-
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.11.5</version>
<version>0.11.6</version>
<type>pom</type>
</dependency>
```
**Gradle**
Add the following line to the `dependencies` section of your `build.gradle`:
```groovy
implementation 'com.meilisearch.sdk:meilisearch-java:0.11.5'
implementation 'com.meilisearch.sdk:meilisearch-java:0.11.6'
```
```java
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Add the following code to the `<dependencies>` section of your project:
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.11.5</version>
<version>0.11.6</version>
<type>pom</type>
</dependency>
```
Expand All @@ -73,7 +73,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.11.5'
implementation 'com.meilisearch.sdk:meilisearch-java:0.11.6'
```

: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.11.5'
version = '0.11.6'

java {
sourceCompatibility = JavaVersion.VERSION_1_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.11.5";
static final String VERSION = "0.11.6";

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

0 comments on commit ecce4d6

Please sign in to comment.