Skip to content

Commit

Permalink
Merge #542
Browse files Browse the repository at this point in the history
542: Update version for the next release (v0.10.0) r=alallema a=alallema

Check out the changelog of [Meilisearch v0.29.0](https://github.com/meilisearch/meilisearch/releases/tag/v0.29.0) for more information on the changes.

## ⚠️ Breaking changes

This breaking change *__may not affect you__*, but in any case, you should check your search queries if you want to keep the same behavior from `v0.28`.
* The `NOT` filter keyword does not have an implicitly `EXIST` operator anymore. Check out for more information: meilisearch/meilisearch#2486
* Correction of naming methods related to Ranking Rules (#539) `@ghousek1`

## 🚀 Enhancements

* Ensure support to the new search query parameter `MatchingStrategy` (#434) `@alallema`
* Ensure support to keys with wildcarded actions.
  - `actions` field during key creation now accepts wildcards on actions. For example, `indexes.*` provides rights to `indexes.create`, `indexes.get`,`indexes.delete`, `indexes.delete`, and `indexes.update`. (#434) `@alallema` 

Thanks again to `@alallema` and `@ghousek1` ! 🎉

Co-authored-by: alallema <amelie@meilisearch.com>
Co-authored-by: Amélie <alallema@users.noreply.github.com>
  • Loading branch information
3 people authored Feb 14, 2023
2 parents b5a8159 + 3210884 commit e1a5463
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 @@ -455,15 +455,15 @@ getting_started_add_documents_md: |-
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.9.0</version>
<version>0.10.0</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.9.0'
implementation 'com.meilisearch.sdk:meilisearch-java:0.10.0'
```
```java
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Add the following code to the `<dependencies>` section of your project:
<dependency>
<groupId>com.meilisearch.sdk</groupId>
<artifactId>meilisearch-java</artifactId>
<version>0.9.0</version>
<version>0.10.0</version>
<type>pom</type>
</dependency>
```
Expand All @@ -66,7 +66,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.9.0'
implementation 'com.meilisearch.sdk:meilisearch-java:0.10.0'
```

### Run Meilisearch <!-- omit in toc -->
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.9.0'
version = '0.10.0'

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.9.0";
static final String VERSION = "0.10.0";

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

0 comments on commit e1a5463

Please sign in to comment.