Skip to content

Commit

Permalink
Merge #456
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
bors[bot] and meili-bot authored Apr 3, 2023
2 parents 2b041fc + 32d6c7e commit 4906288
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .code-samples.meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ primary_field_guide_add_document_primary_key: |-
getting_started_add_documents_md: |-
```toml
[dependencies]
meilisearch-sdk = "0.22.1"
meilisearch-sdk = "0.23.0"
# futures: because we want to block on futures
futures = "0.3"
# serde: required if you are going to use documents
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meilisearch-sdk"
version = "0.22.1"
version = "0.23.0"
authors = ["Mubelotix <[email protected]>"]
edition = "2018"
description = "Rust wrapper for the Meilisearch API. Meilisearch is a powerful, fast, open-source, easy to use and deploy search engine."
Expand All @@ -22,7 +22,7 @@ jsonwebtoken = { version = "8", default-features = false }
yaup = "0.2.0"
either = { version = "1.8.0", features = ["serde"] }
thiserror = "1.0.37"
meilisearch-index-setting-macro = { path = "meilisearch-index-setting-macro", version = "0.22.1" }
meilisearch-index-setting-macro = { path = "meilisearch-index-setting-macro", version = "0.23.0" }


[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:

```toml
[dependencies]
meilisearch-sdk = "0.22.1"
meilisearch-sdk = "0.23.0"
```

The following optional dependencies may also be useful:
Expand Down
2 changes: 1 addition & 1 deletion README.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:

```toml
[dependencies]
meilisearch-sdk = "0.22.1"
meilisearch-sdk = "0.23.0"
```

The following optional dependencies may also be useful:
Expand Down
2 changes: 1 addition & 1 deletion meilisearch-index-setting-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meilisearch-index-setting-macro"
version = "0.22.1"
version = "0.23.0"
description = "Helper tool to generate settings of an Meilisearch index"
edition = "2021"
license = "MIT"
Expand Down

0 comments on commit 4906288

Please sign in to comment.