Skip to content

Commit 31ba26f

Browse files
Merge pull request #308 from OneBusAway/release-please--branches--main--changes--next
release: 1.14.0
2 parents 2677a96 + 70de5c8 commit 31ba26f

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
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.13.5"
2+
".": "1.14.0"
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.14.0 (2025-07-15)
4+
5+
Full Changelog: [v1.13.5...v1.14.0](https://github.com/OneBusAway/python-sdk/compare/v1.13.5...v1.14.0)
6+
7+
### Features
8+
9+
* clean up environment call outs ([ecac1f6](https://github.com/OneBusAway/python-sdk/commit/ecac1f6610cdae3cde3a0f982c4bc11192a5a809))
10+
311
## 1.13.5 (2025-07-12)
412

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

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,14 @@ pip install onebusaway[aiohttp]
7979
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
8080

8181
```python
82-
import os
8382
import asyncio
8483
from onebusaway import DefaultAioHttpClient
8584
from onebusaway import AsyncOnebusawaySDK
8685

8786

8887
async def main() -> None:
8988
async with AsyncOnebusawaySDK(
90-
api_key=os.environ.get("ONEBUSAWAY_API_KEY"), # This is the default and can be omitted
89+
api_key="My API Key",
9190
http_client=DefaultAioHttpClient(),
9291
) as client:
9392
current_time = await client.current_time.retrieve()

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.13.5"
3+
version = "1.14.0"
44
description = "The official Python library for the onebusaway-sdk API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

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.13.5" # x-release-please-version
4+
__version__ = "1.14.0" # x-release-please-version

0 commit comments

Comments
 (0)