Skip to content

Commit c00ac17

Browse files
authored
Merge pull request #175 from lumalabs/release-please--branches--main--changes--next
release: 1.18.1
2 parents b2b3424 + d2edaa5 commit c00ac17

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.18.0"
2+
".": "1.18.1"
33
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 1.18.1 (2025-10-18)
4+
5+
Full Changelog: [v1.18.0...v1.18.1](https://github.com/lumalabs/lumaai-python/compare/v1.18.0...v1.18.1)
6+
7+
### Chores
8+
9+
* bump `httpx-aiohttp` version to 0.1.9 ([d5510ae](https://github.com/lumalabs/lumaai-python/commit/d5510ae0bee832e619c93db9a4c43ee8fade791c))
10+
* **internal:** detect missing future annotations with ruff ([b7f9ede](https://github.com/lumalabs/lumaai-python/commit/b7f9ede6d3ad8f6d42b6d726ee4cf7608c9133c5))
11+
312
## 1.18.0 (2025-09-20)
413

514
Full Changelog: [v1.17.2...v1.18.0](https://github.com/lumalabs/lumaai-python/compare/v1.17.2...v1.18.0)

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "lumaai"
3-
version = "1.18.0"
3+
version = "1.18.1"
44
description = "The official Python library for the lumaai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"
@@ -39,7 +39,7 @@ Homepage = "https://github.com/lumalabs/lumaai-python"
3939
Repository = "https://github.com/lumalabs/lumaai-python"
4040

4141
[project.optional-dependencies]
42-
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.8"]
42+
aiohttp = ["aiohttp", "httpx_aiohttp>=0.1.9"]
4343

4444
[tool.rye]
4545
managed = true
@@ -224,6 +224,8 @@ select = [
224224
"B",
225225
# remove unused imports
226226
"F401",
227+
# check for missing future annotations
228+
"FA102",
227229
# bare except statements
228230
"E722",
229231
# unused arguments
@@ -246,6 +248,8 @@ unfixable = [
246248
"T203",
247249
]
248250

251+
extend-safe-fixes = ["FA102"]
252+
249253
[tool.ruff.lint.flake8-tidy-imports.banned-api]
250254
"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"
251255

requirements-dev.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ httpx==0.28.1
5656
# via httpx-aiohttp
5757
# via lumaai
5858
# via respx
59-
httpx-aiohttp==0.1.8
59+
httpx-aiohttp==0.1.9
6060
# via lumaai
6161
idna==3.4
6262
# via anyio

requirements.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ httpcore==1.0.9
4343
httpx==0.28.1
4444
# via httpx-aiohttp
4545
# via lumaai
46-
httpx-aiohttp==0.1.8
46+
httpx-aiohttp==0.1.9
4747
# via lumaai
4848
idna==3.4
4949
# via anyio

src/lumaai/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "lumaai"
4-
__version__ = "1.18.0" # x-release-please-version
4+
__version__ = "1.18.1" # x-release-please-version

0 commit comments

Comments
 (0)