Skip to content

Changes related to the next Meilisearch release (v1.0.0) #635

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Feb 6, 2023
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ index.search(

## 🤖 Compatibility with Meilisearch

This package only guarantees the compatibility with the [version v0.30.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.30.0).
This package only guarantees the compatibility with the [version v1.0.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v1.0.0).

## 💡 Learn more

Expand Down
2 changes: 1 addition & 1 deletion tests/client/test_client_task_meilisearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def test_get_task_inexistent(client):
def create_tasks(empty_index, small_movies):
"""Ensures there are some tasks present for testing."""
index = empty_index()
index.update_ranking_rules(["type", "exactness"])
index.update_ranking_rules(["typo", "exactness"])
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀

index.reset_ranking_rules()
index.add_documents(small_movies)
index.add_documents(small_movies)
Expand Down