From b2b6c6686ac3b920f49ebef8817a594a22de6115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Wed, 31 Mar 2021 10:55:04 +0200 Subject: [PATCH] Update version for the next release (v0.7.0) (#123) --- .code-samples.meilisearch.yaml | 2 +- Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.code-samples.meilisearch.yaml b/.code-samples.meilisearch.yaml index 491a8e90..753fcfd5 100644 --- a/.code-samples.meilisearch.yaml +++ b/.code-samples.meilisearch.yaml @@ -394,7 +394,7 @@ search_guide_2: |- getting_started_add_documents_md: |- ```toml [dependencies] - meilisearch-sdk = "0.6" + meilisearch-sdk = "0.7" # futures: because we want to block on futures futures = "0.3" # serde: required if you are going to use documents diff --git a/Cargo.toml b/Cargo.toml index 50f8c8dd..0035663c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "meilisearch-sdk" -version = "0.6.1" +version = "0.7.0" authors = ["Mubelotix "] edition = "2018" description = "Rust wrapper for the MeiliSearch API. MeiliSearch is a powerful, fast, open-source, easy to use and deploy search engine." diff --git a/README.md b/README.md index 2d5da6c3..0ed19e60 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`: ```toml [dependencies] -meilisearch-sdk = "0.6.1" +meilisearch-sdk = "0.7.0" ``` The following optional dependencies may also be useful: diff --git a/src/lib.rs b/src/lib.rs index c60354f3..d3d1b9cb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! meilisearch-sdk = "0.6.1" +//! meilisearch-sdk = "0.7.0" //! ``` //! //! The following optional dependencies may also be useful: