Skip to content

Commit 6993163

Browse files
authored
Merge branch 'meilisearch:main' into flaky-test
2 parents f169e24 + bace22a commit 6993163

File tree

5 files changed

+15
-50
lines changed

5 files changed

+15
-50
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ types-requests = "*"
1515
black = "*"
1616
isort = "*"
1717
importlib_metadata = {version = "*", markers="python_version < '3.8'"}
18-
zipp = {version = "==3.8.1", markers="python_version < '3.8'"}
18+
zipp = {version = "==3.12.1", markers="python_version < '3.8'"}
1919
exceptiongroup = {version = "*", markers="python_version < '3.11'"}
2020
tomli = {version = "*", markers="python_version < '3.11'"}
2121
wrapt = {version = "*", markers="python_version < '3.11'"}

Pipfile.lock

Lines changed: 11 additions & 46 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ index.search(
197197

198198
## 🤖 Compatibility with Meilisearch
199199

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

202202
## 💡 Learn more
203203

meilisearch/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
__version__ = "0.23.0"
3+
__version__ = "0.24.0"
44

55

66
def qualified_version() -> str:

tests/client/test_client_task_meilisearch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def test_get_task_inexistent(client):
9898
def create_tasks(empty_index, small_movies):
9999
"""Ensures there are some tasks present for testing."""
100100
index = empty_index()
101-
index.update_ranking_rules(["type", "exactness"])
101+
index.update_ranking_rules(["typo", "exactness"])
102102
index.reset_ranking_rules()
103103
index.add_documents(small_movies)
104104
index.add_documents(small_movies)

0 commit comments

Comments
 (0)