Skip to content

Commit 2494e49

Browse files
Merge #895
895: Update version for the next release (v0.16.1) r=curquiza a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-java to a new version: "v0.16.1" <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - Documentation - Updated installation snippets and code samples to reference meilisearch-java 0.16.1 (Maven and Gradle). - Ensures users installing from README and examples get the latest patch version. - Chores - Bumped project version to 0.16.1 across the codebase. - Updated the reported SDK version string to reflect 0.16.1. - No functional changes; this is a maintenance release focused on aligning version references. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: meili-bot <[email protected]>
2 parents 4557bac + 6498d77 commit 2494e49

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.code-samples.meilisearch.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,14 +463,14 @@ getting_started_add_documents: |-
463463
// <dependency>
464464
// <groupId>com.meilisearch.sdk</groupId>
465465
// <artifactId>meilisearch-java</artifactId>
466-
// <version>0.16.0</version>
466+
// <version>0.16.1</version>
467467
// <type>pom</type>
468468
// </dependency>
469469
470470
// For Gradle
471471
// Add the following line to the `dependencies` section of your `build.gradle`:
472472
//
473-
// implementation 'com.meilisearch.sdk:meilisearch-java:0.16.0'
473+
// implementation 'com.meilisearch.sdk:meilisearch-java:0.16.1'
474474
475475
// In your .java file:
476476
import com.meilisearch.sdk;

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Add the following code to the `<dependencies>` section of your project:
5858
<dependency>
5959
<groupId>com.meilisearch.sdk</groupId>
6060
<artifactId>meilisearch-java</artifactId>
61-
<version>0.16.0</version>
61+
<version>0.16.1</version>
6262
<type>pom</type>
6363
</dependency>
6464
```
@@ -68,7 +68,7 @@ Add the following code to the `<dependencies>` section of your project:
6868
Add the following line to the `dependencies` section of your `build.gradle`:
6969

7070
```groovy
71-
implementation 'com.meilisearch.sdk:meilisearch-java:0.16.0'
71+
implementation 'com.meilisearch.sdk:meilisearch-java:0.16.1'
7272
```
7373

7474
: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
@@ -17,7 +17,7 @@ plugins {
1717
}
1818

1919
group = 'com.meilisearch.sdk'
20-
version = '0.16.0'
20+
version = '0.16.1'
2121

2222
base {
2323
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.16.0";
4+
static final String VERSION = "0.16.1";
55

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

0 commit comments

Comments
 (0)