diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 797bb33..e72f113 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.13.5" + ".": "1.14.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f8b0fe..ff2cf72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.14.0 (2025-07-15) + +Full Changelog: [v1.13.5...v1.14.0](https://github.com/OneBusAway/python-sdk/compare/v1.13.5...v1.14.0) + +### Features + +* clean up environment call outs ([ecac1f6](https://github.com/OneBusAway/python-sdk/commit/ecac1f6610cdae3cde3a0f982c4bc11192a5a809)) + ## 1.13.5 (2025-07-12) Full Changelog: [v1.13.4...v1.13.5](https://github.com/OneBusAway/python-sdk/compare/v1.13.4...v1.13.5) diff --git a/README.md b/README.md index 956e80d..66f764f 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,6 @@ pip install onebusaway[aiohttp] Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`: ```python -import os import asyncio from onebusaway import DefaultAioHttpClient from onebusaway import AsyncOnebusawaySDK @@ -87,7 +86,7 @@ from onebusaway import AsyncOnebusawaySDK async def main() -> None: async with AsyncOnebusawaySDK( - api_key=os.environ.get("ONEBUSAWAY_API_KEY"), # This is the default and can be omitted + api_key="My API Key", http_client=DefaultAioHttpClient(), ) as client: current_time = await client.current_time.retrieve() diff --git a/pyproject.toml b/pyproject.toml index c01bc4f..162c185 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "onebusaway" -version = "1.13.5" +version = "1.14.0" description = "The official Python library for the onebusaway-sdk API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/onebusaway/_version.py b/src/onebusaway/_version.py index ac4af0a..aa78ce6 100644 --- a/src/onebusaway/_version.py +++ b/src/onebusaway/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "onebusaway" -__version__ = "1.13.5" # x-release-please-version +__version__ = "1.14.0" # x-release-please-version