Skip to content

Commit c4ce16d

Browse files
Merge pull request #352 from OneBusAway/release-please--branches--main--changes--next
release: 1.25.2
2 parents 9e8875f + d343d57 commit c4ce16d

5 files changed

Lines changed: 12 additions & 4 deletions

File tree

.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.25.1"
2+
".": "1.25.2"
33
}

CHANGELOG.md

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

3+
## 1.25.2 (2026-05-09)
4+
5+
Full Changelog: [v1.25.1...v1.25.2](https://github.com/OneBusAway/python-sdk/compare/v1.25.1...v1.25.2)
6+
7+
### Bug Fixes
8+
9+
* **client:** add missing f-string prefix in file type error message ([7e64ef0](https://github.com/OneBusAway/python-sdk/commit/7e64ef0ae733fa7eaa144f6db52b504ec8cc9279))
10+
311
## 1.25.1 (2026-05-01)
412

513
Full Changelog: [v1.25.0...v1.25.1](https://github.com/OneBusAway/python-sdk/compare/v1.25.0...v1.25.1)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "onebusaway"
3-
version = "1.25.1"
3+
version = "1.25.2"
44
description = "The official Python library for the onebusaway-sdk API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/onebusaway/_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ async def async_to_httpx_files(files: RequestFiles | None) -> HttpxRequestFiles
9999
elif is_sequence_t(files):
100100
files = [(key, await _async_transform_file(file)) for key, file in files]
101101
else:
102-
raise TypeError("Unexpected file type input {type(files)}, expected mapping or sequence")
102+
raise TypeError(f"Unexpected file type input {type(files)}, expected mapping or sequence")
103103

104104
return files
105105

src/onebusaway/_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__ = "onebusaway"
4-
__version__ = "1.25.1" # x-release-please-version
4+
__version__ = "1.25.2" # x-release-please-version

0 commit comments

Comments
 (0)