Skip to content

Commit 4a69a72

Browse files
Release v0.7.10
1 parent 6991bcb commit 4a69a72

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

poetry.lock

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "airweave-sdk"
33

44
[tool.poetry]
55
name = "airweave-sdk"
6-
version = "v0.7.9"
6+
version = "v0.7.10"
77
description = ""
88
readme = "README.md"
99
authors = []

src/airweave/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def __init__(
2626

2727
def get_headers(self) -> typing.Dict[str, str]:
2828
headers: typing.Dict[str, str] = {
29-
"User-Agent": "airweave-sdk/v0.7.9",
29+
"User-Agent": "airweave-sdk/v0.7.10",
3030
"X-Fern-Language": "Python",
3131
"X-Fern-SDK-Name": "airweave-sdk",
32-
"X-Fern-SDK-Version": "v0.7.9",
32+
"X-Fern-SDK-Version": "v0.7.10",
3333
**(self.get_custom_headers() or {}),
3434
}
3535
if self._framework_name is not None:

src/airweave/types/filter.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ class Config:
4242
from .min_should import MinShould # noqa: E402, F401, I001
4343
from .nested import Nested # noqa: E402, F401, I001
4444
from .nested_condition import NestedCondition # noqa: E402, F401, I001
45-
from .must import Must # noqa: E402, F401, I001
4645
from .filter_must_item import FilterMustItem # noqa: E402, F401, I001
47-
from .should import Should # noqa: E402, F401, I001
46+
from .filter_should_item import FilterShouldItem # noqa: E402, F401, I001
47+
from .must import Must # noqa: E402, F401, I001
4848
from .filter_must_not import FilterMustNot # noqa: E402, F401, I001
49+
from .should import Should # noqa: E402, F401, I001
4950
from .filter_must_not_item import FilterMustNotItem # noqa: E402, F401, I001
50-
from .filter_should_item import FilterShouldItem # noqa: E402, F401, I001
5151
from .min_should_conditions_item import MinShouldConditionsItem # noqa: E402, F401, I001
5252

5353
update_forward_refs(Filter)

0 commit comments

Comments
 (0)