Skip to content

Commit 7d2ec4e

Browse files
authored
Update version for the next release (v0.10.0) (#167)
1 parent 4cdb85f commit 7d2ec4e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.code-samples.meilisearch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ search_guide_2: |-
419419
getting_started_add_documents_md: |-
420420
```toml
421421
[dependencies]
422-
meilisearch-sdk = "0.9"
422+
meilisearch-sdk = "0.10"
423423
# futures: because we want to block on futures
424424
futures = "0.3"
425425
# 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.9.0"
3+
version = "0.10.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
@@ -49,7 +49,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
4949

5050
```toml
5151
[dependencies]
52-
meilisearch-sdk = "0.9.0"
52+
meilisearch-sdk = "0.10.0"
5353
```
5454

5555
The following optional dependencies may also be useful:

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! ```toml
66
//! [dependencies]
7-
//! meilisearch-sdk = "0.9.0"
7+
//! meilisearch-sdk = "0.10.0"
88
//! ```
99
//!
1010
//! The following optional dependencies may also be useful:
@@ -14,7 +14,7 @@
1414
//! serde = { version = "1.0", features = ["derive"] }
1515
//! ```
1616
//!
17-
//! This crate is `async` but you can choose to use an async runtime like [tokio](https://crates.io/crates/tokio) or just [block on futures](https://docs.rs/futures/latest/futures/executor/fn.block_on.html).
17+
//! This crate is `async` but you can choose to use an async runtime like [tokio](https://crates.io/crates/tokio) or just [block on futures](https://docs.rs/futures/latest/futures/executor/fn.block_on.html).
1818
//! You can enable the `sync` feature to make most structs `Sync`. It may be a bit slower.
1919
//!
2020
//! Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde.

0 commit comments

Comments
 (0)