Skip to content

Commit 4906288

Browse files
bors[bot]meili-bot
andauthored
Merge #456
456: Update version for the next release (v0.23.0) r=bidoubiwa a=meili-bot This version makes this package compatible with Meilisearch v1.1 🎉 Check out the changelog of [Meilisearch v1.1](https://github.com/meilisearch/meilisearch/releases/tag/v1.1.0) for more information on the changes. ## 🚀 Enhancements * Add the `multi_search` method on `Client` #454 ## ⚠️ Breaking changes * Rename `Document` trait to `IndexConfig` and extend with function to retrieve index (#445) `@amaihoefner` * Add facetstats in the searchResults #443 * Add a new `csv_delimiter` parameter on `index.add_or_replace_unchecked_payload` and `index. add_or_update_unchecked_payload` #455 Thanks again to `@amaihoefner,` and `@shimatar0!` 🎉 Co-authored-by: meili-bot <74670311+meili-bot@users.noreply.github.com>
2 parents 2b041fc + 32d6c7e commit 4906288

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.code-samples.meilisearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -854,7 +854,7 @@ primary_field_guide_add_document_primary_key: |-
854854
getting_started_add_documents_md: |-
855855
```toml
856856
[dependencies]
857-
meilisearch-sdk = "0.22.1"
857+
meilisearch-sdk = "0.23.0"
858858
# futures: because we want to block on futures
859859
futures = "0.3"
860860
# serde: required if you are going to use documents

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meilisearch-sdk"
3-
version = "0.22.1"
3+
version = "0.23.0"
44
authors = ["Mubelotix <mubelotix@gmail.com>"]
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."
@@ -22,7 +22,7 @@ jsonwebtoken = { version = "8", default-features = false }
2222
yaup = "0.2.0"
2323
either = { version = "1.8.0", features = ["serde"] }
2424
thiserror = "1.0.37"
25-
meilisearch-index-setting-macro = { path = "meilisearch-index-setting-macro", version = "0.22.1" }
25+
meilisearch-index-setting-macro = { path = "meilisearch-index-setting-macro", version = "0.23.0" }
2626

2727

2828
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5252

5353
```toml
5454
[dependencies]
55-
meilisearch-sdk = "0.22.1"
55+
meilisearch-sdk = "0.23.0"
5656
```
5757

5858
The following optional dependencies may also be useful:

README.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5252

5353
```toml
5454
[dependencies]
55-
meilisearch-sdk = "0.22.1"
55+
meilisearch-sdk = "0.23.0"
5656
```
5757

5858
The following optional dependencies may also be useful:

meilisearch-index-setting-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meilisearch-index-setting-macro"
3-
version = "0.22.1"
3+
version = "0.23.0"
44
description = "Helper tool to generate settings of an Meilisearch index"
55
edition = "2021"
66
license = "MIT"

0 commit comments

Comments
 (0)