diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4ce109a..aa06f86 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.18.0" + ".": "1.18.1" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 88acbb1..fcfeec8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 1.18.1 (2025-10-18) + +Full Changelog: [v1.18.0...v1.18.1](https://github.com/lumalabs/lumaai-python/compare/v1.18.0...v1.18.1) + +### Chores + +* bump `httpx-aiohttp` version to 0.1.9 ([d5510ae](https://github.com/lumalabs/lumaai-python/commit/d5510ae0bee832e619c93db9a4c43ee8fade791c)) +* **internal:** detect missing future annotations with ruff ([b7f9ede](https://github.com/lumalabs/lumaai-python/commit/b7f9ede6d3ad8f6d42b6d726ee4cf7608c9133c5)) + ## 1.18.0 (2025-09-20) Full Changelog: [v1.17.2...v1.18.0](https://github.com/lumalabs/lumaai-python/compare/v1.17.2...v1.18.0) diff --git a/pyproject.toml b/pyproject.toml index 5e8e19d..6a53ecb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lumaai" -version = "1.18.0" +version = "1.18.1" description = "The official Python library for the lumaai API" dynamic = ["readme"] license = "Apache-2.0" @@ -39,7 +39,7 @@ Homepage = "https://github.com/lumalabs/lumaai-python" Repository = "https://github.com/lumalabs/lumaai-python" [project.optional-dependencies] -aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.8"] +aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"] [tool.rye] managed = true @@ -224,6 +224,8 @@ select = [ "B", # remove unused imports "F401", + # check for missing future annotations + "FA102", # bare except statements "E722", # unused arguments @@ -246,6 +248,8 @@ unfixable = [ "T203", ] +extend-safe-fixes = ["FA102"] + [tool.ruff.lint.flake8-tidy-imports.banned-api] "functools.lru_cache".msg = "This function does not retain type information for the wrapped function's arguments; The `lru_cache` function from `_utils` should be used instead" diff --git a/requirements-dev.lock b/requirements-dev.lock index 9cdf601..80c7f66 100644 --- a/requirements-dev.lock +++ b/requirements-dev.lock @@ -56,7 +56,7 @@ httpx==0.28.1 # via httpx-aiohttp # via lumaai # via respx -httpx-aiohttp==0.1.8 +httpx-aiohttp==0.1.9 # via lumaai idna==3.4 # via anyio diff --git a/requirements.lock b/requirements.lock index acb88d7..c515305 100644 --- a/requirements.lock +++ b/requirements.lock @@ -43,7 +43,7 @@ httpcore==1.0.9 httpx==0.28.1 # via httpx-aiohttp # via lumaai -httpx-aiohttp==0.1.8 +httpx-aiohttp==0.1.9 # via lumaai idna==3.4 # via anyio diff --git a/src/lumaai/_version.py b/src/lumaai/_version.py index b8df3c3..d40b479 100644 --- a/src/lumaai/_version.py +++ b/src/lumaai/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "lumaai" -__version__ = "1.18.0" # x-release-please-version +__version__ = "1.18.1" # x-release-please-version