From a4eafb73dac19325e81e92a07f1b503dda42f877 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9mentine=20Urquizar?= Date: Sun, 14 Feb 2021 19:11:54 +0100 Subject: [PATCH] Change versioning for the next release (v0.5.1) --- Cargo.toml | 2 +- README.md | 7 +++---- README.tpl | 1 - src/lib.rs | 6 +++--- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a601aed..3cb4f86c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "meilisearch-sdk" -version = "0.5.0" +version = "0.5.1" 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 9cdc1797..ba6b0dbf 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,6 @@ - [📖 Documentation](#-documentation) - [🔧 Installation](#-installation) - [🚀 Getting Started](#-getting-started) -- [🌐 Running in the Browser with WASM](#-running-in-the-browser-with-wasm) - [🤖 Compatibility with MeiliSearch](#-compatibility-with-meilisearch) - [⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing) @@ -50,7 +49,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`: ```toml [dependencies] -meilisearch-sdk = "0.5.0" +meilisearch-sdk = "0.5.1" ``` The following optional dependencies may also be useful: @@ -64,7 +63,7 @@ This crate is `async` but you can choose to use an async runtime like [tokio](ht Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde. -### Run a MeiliSearch Instance +### Run a MeiliSearch Instance This crate requires a MeiliSearch server to run. @@ -128,7 +127,7 @@ Output: [Book { book_id: 4, title: "Harry Potter and the Half-Blood Prince" }] ``` -### 🌐 Running in the Browser with WASM +### 🌐 Running in the Browser with WASM This crate fully supports WASM. diff --git a/README.tpl b/README.tpl index cbb55ed5..f23837d6 100644 --- a/README.tpl +++ b/README.tpl @@ -36,7 +36,6 @@ - [📖 Documentation](#-documentation) - [🔧 Installation](#-installation) - [🚀 Getting Started](#-getting-started) -- [🌐 Running in the Browser with WASM](#-running-in-the-browser-with-wasm) - [🤖 Compatibility with MeiliSearch](#-compatibility-with-meilisearch) - [⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing) diff --git a/src/lib.rs b/src/lib.rs index 71db88f7..9f799020 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! meilisearch-sdk = "0.5.0" +//! meilisearch-sdk = "0.5.1" //! ``` //! //! The following optional dependencies may also be useful: @@ -18,7 +18,7 @@ //! //! Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde. //! -//! ## Run a MeiliSearch Instance +//! ## Run a MeiliSearch Instance //! //! This crate requires a MeiliSearch server to run. //! @@ -82,7 +82,7 @@ //! [Book { book_id: 4, title: "Harry Potter and the Half-Blood Prince" }] //! ``` //! -//! ## 🌐 Running in the Browser with WASM +//! ## 🌐 Running in the Browser with WASM //! //! This crate fully supports WASM. //!