Skip to content

Commit ab49345

Browse files
authored
Change versioning for the next release (v0.5.1) (#104)
1 parent b00e304 commit ab49345

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

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.5.0"
3+
version = "0.5.1"
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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
- [📖 Documentation](#-documentation)
3737
- [🔧 Installation](#-installation)
3838
- [🚀 Getting Started](#-getting-started)
39-
- [🌐 Running in the Browser with WASM](#-running-in-the-browser-with-wasm)
4039
- [🤖 Compatibility with MeiliSearch](#-compatibility-with-meilisearch)
4140
- [⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing)
4241

@@ -50,7 +49,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5049

5150
```toml
5251
[dependencies]
53-
meilisearch-sdk = "0.5.0"
52+
meilisearch-sdk = "0.5.1"
5453
```
5554

5655
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
6463

6564
Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde.
6665

67-
### Run a MeiliSearch Instance
66+
### Run a MeiliSearch Instance <!-- omit in TOC -->
6867

6968
This crate requires a MeiliSearch server to run.
7069

@@ -128,7 +127,7 @@ Output:
128127
[Book { book_id: 4, title: "Harry Potter and the Half-Blood Prince" }]
129128
```
130129

131-
### 🌐 Running in the Browser with WASM
130+
### 🌐 Running in the Browser with WASM <!-- omit in TOC -->
132131

133132
This crate fully supports WASM.
134133

README.tpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
- [📖 Documentation](#-documentation)
3737
- [🔧 Installation](#-installation)
3838
- [🚀 Getting Started](#-getting-started)
39-
- [🌐 Running in the Browser with WASM](#-running-in-the-browser-with-wasm)
4039
- [🤖 Compatibility with MeiliSearch](#-compatibility-with-meilisearch)
4140
- [⚙️ Development Workflow and Contributing](#️-development-workflow-and-contributing)
4241

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! ```toml
66
//! [dependencies]
7-
//! meilisearch-sdk = "0.5.0"
7+
//! meilisearch-sdk = "0.5.1"
88
//! ```
99
//!
1010
//! The following optional dependencies may also be useful:
@@ -18,7 +18,7 @@
1818
//!
1919
//! Using this crate is possible without [serde](https://crates.io/crates/serde), but a lot of features require serde.
2020
//!
21-
//! ## Run a MeiliSearch Instance
21+
//! ## Run a MeiliSearch Instance <!-- omit in TOC -->
2222
//!
2323
//! This crate requires a MeiliSearch server to run.
2424
//!
@@ -82,7 +82,7 @@
8282
//! [Book { book_id: 4, title: "Harry Potter and the Half-Blood Prince" }]
8383
//! ```
8484
//!
85-
//! ## 🌐 Running in the Browser with WASM
85+
//! ## 🌐 Running in the Browser with WASM <!-- omit in TOC -->
8686
//!
8787
//! This crate fully supports WASM.
8888
//!

0 commit comments

Comments
 (0)