Skip to content

Commit 79642ad

Browse files
bors[bot]bidoubiwa
andauthored
Merge #343
343: Update version for the next release (v.20.0) r=bidoubiwa a=bidoubiwa This version makes this package compatible with Meilisearch v0.29.1 🎉 Check out the changelog of [Meilisearch v0.29.1](https://github.com/meilisearch/meilisearch/releases/tag/v0.29.0rc1) for more information on the changes. ## 🚀 Enhancements - Ensure support to the new search query parameter `matchingStrategy` (#333) `@bidoubiwa` - 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`. meilisearch/meilisearch#2560 ## ⚠️ Breaking Changes * Replace struct Query with SearchQuery (#341) `@vishalsodani` - Changes in filters and behavior of the NOT keyword meilisearch/meilisearch#2486 Thanks again to `@bidoubiwa,` `@curquiza,` and `@vishalsodani!` 🎉 Co-authored-by: Charlotte Vermandel <[email protected]>
2 parents 66f6b6a + be93ae9 commit 79642ad

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.code-samples.meilisearch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ primary_field_guide_add_document_primary_key: |-
748748
getting_started_add_documents_md: |-
749749
```toml
750750
[dependencies]
751-
meilisearch-sdk = "0.19"
751+
meilisearch-sdk = "0.20"
752752
# futures: because we want to block on futures
753753
futures = "0.3"
754754
# serde: required if you are going to use documents

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meilisearch-sdk"
3-
version = "0.19.0"
3+
version = "0.20.0"
44
authors = ["Mubelotix <[email protected]>"]
55
edition = "2018"
66
description = "Rust wrapper for the Meilisearch API. Meilisearch is a powerful, fast, open-source, easy to use and deploy search engine."

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5959

6060
```toml
6161
[dependencies]
62-
meilisearch-sdk = "0.19.0"
62+
meilisearch-sdk = "0.20.0"
6363
```
6464

6565
The following optional dependencies may also be useful:

README.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5959

6060
```toml
6161
[dependencies]
62-
meilisearch-sdk = "0.19.0"
62+
meilisearch-sdk = "0.20.0"
6363
```
6464

6565
The following optional dependencies may also be useful:

0 commit comments

Comments
 (0)