Skip to content

Commit a04ae70

Browse files
bors[bot]bidoubiwa
andauthored
Merge #399
399: Update version for the next release (v0.21.0) r=bidoubiwa a=bidoubiwa This version makes this package compatible with Meilisearch v0.30.0 🎉 Check out the changelog of [Meilisearch v0.30.0](https://github.com/meilisearch/meilisearch/releases/tag/v0.30.0) for more information on the changes. ## 🚀 Enhancements - New `pagination` strategy with the search parameters`page` and `hitsPerPage` #374 - New bulder methods on `get_tasks`: `with_uids`, `with_before_enqueued_at`, ... see #375 - New `client.cancel_tasks` method that lets you cancel `enqueued` and `processing` tasks #377 - New `client.delete_tasks` method that lets you delete tasks #381 - New `client.swap_indexes` method that lets you swap two indexes #382 ## ⚠️ Breaking change - builder functions on `TasksQuery` name changes: #375 - `with_status` -> `with_statuses` - `with_index_uid` -> `with_index_uids` - `with_type` -> `with_types` - Task detail `receivedDocumentIds` renamed to `providedIds` #393 - Error field in `Task` is now always present and has a `None` value when there are no errors #390 - Add and rename some error codes: #384 Co-authored-by: Charlotte Vermandel <[email protected]>
2 parents 1106ac6 + 861efc2 commit a04ae70

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.code-samples.meilisearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -828,7 +828,7 @@ primary_field_guide_add_document_primary_key: |-
828828
getting_started_add_documents_md: |-
829829
```toml
830830
[dependencies]
831-
meilisearch-sdk = "0.20"
831+
meilisearch-sdk = "0.21"
832832
# futures: because we want to block on futures
833833
futures = "0.3"
834834
# serde: required if you are going to use documents

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-sdk"
3-
version = "0.20.1"
3+
version = "0.21.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

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.20.1"
55+
meilisearch-sdk = "0.21.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.20.1"
55+
meilisearch-sdk = "0.21.0"
5656
```
5757

5858
The following optional dependencies may also be useful:

0 commit comments

Comments
 (0)