Skip to content

Commit c170aa2

Browse files
meili-bors[bot]meili-botcurquiza
authored
Merge #545
545: Update version for the next release (v0.25.0) r=curquiza a=meili-bot _This PR is auto-generated._ The automated script updates the version of meilisearch-rust to a new version: "v0.25.0" --- Part of the work of #544 --- This version introduces features released on Meilisearch v1.7.0 🎉 Check out the changelog of [Meilisearch v1.7.0](https://github.com/meilisearch/meilisearch/releases/tag/v1.7.0) for more information on the changes. ## ⚠️ Breaking changes * `scoreDetails` feature is not experimental anymore. You can directly use `showRankingScoreDetails` during a search without activating the experimental feature 🎉 ## 🚀 Enhancements * Add proximity precision to settings (#548) cyprx ## ⚙️ Maintenance/misc * Fix clippy (#546) curquiza * Update dependencies (#542) omid * Add an example using actix-web, async_graphql and diesel (#538) korir248 Co-authored-by: meili-bot <[email protected]> Co-authored-by: Clémentine U. - curqui <[email protected]>
2 parents 7c7f428 + 59385d1 commit c170aa2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.code-samples.meilisearch.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ primary_field_guide_add_document_primary_key: |-
993993
getting_started_add_documents_md: |-
994994
```toml
995995
[dependencies]
996-
meilisearch-sdk = "0.24.3"
996+
meilisearch-sdk = "0.25.0"
997997
# futures: because we want to block on futures
998998
futures = "0.3"
999999
# serde: required if you are going to use documents

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meilisearch-sdk"
3-
version = "0.24.3"
3+
version = "0.25.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."
@@ -22,7 +22,7 @@ jsonwebtoken = { version = "9", default-features = false }
2222
yaup = "0.2.0"
2323
either = { version = "1.8.0", features = ["serde"] }
2424
thiserror = "1.0.37"
25-
meilisearch-index-setting-macro = { path = "meilisearch-index-setting-macro", version = "0.24.3" }
25+
meilisearch-index-setting-macro = { path = "meilisearch-index-setting-macro", version = "0.25.0" }
2626

2727
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2828
futures = "0.3"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5858

5959
```toml
6060
[dependencies]
61-
meilisearch-sdk = "0.24.3"
61+
meilisearch-sdk = "0.25.0"
6262
```
6363

6464
The following optional dependencies may also be useful:

README.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ To use `meilisearch-sdk`, add this to your `Cargo.toml`:
5858

5959
```toml
6060
[dependencies]
61-
meilisearch-sdk = "0.24.3"
61+
meilisearch-sdk = "0.25.0"
6262
```
6363

6464
The following optional dependencies may also be useful:

meilisearch-index-setting-macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meilisearch-index-setting-macro"
3-
version = "0.24.3"
3+
version = "0.25.0"
44
description = "Helper tool to generate settings of a Meilisearch index"
55
edition = "2021"
66
license = "MIT"

0 commit comments

Comments
 (0)