File tree Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "." : " 1.13.5 "
2
+ "." : " 1.14.0 "
3
3
}
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
11
## 1.13.5 (2025-07-12)
4
12
5
13
Full Changelog: [ v1.13.4...v1.13.5] ( https://github.com/OneBusAway/python-sdk/compare/v1.13.4...v1.13.5 )
Original file line number Diff line number Diff line change @@ -79,15 +79,14 @@ pip install onebusaway[aiohttp]
79
79
Then you can enable it by instantiating the client with ` http_client=DefaultAioHttpClient() ` :
80
80
81
81
``` python
82
- import os
83
82
import asyncio
84
83
from onebusaway import DefaultAioHttpClient
85
84
from onebusaway import AsyncOnebusawaySDK
86
85
87
86
88
87
async def main () -> None :
89
88
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 " ,
91
90
http_client = DefaultAioHttpClient(),
92
91
) as client:
93
92
current_time = await client.current_time.retrieve()
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " onebusaway"
3
- version = " 1.13.5 "
3
+ version = " 1.14.0 "
4
4
description = " The official Python library for the onebusaway-sdk API"
5
5
dynamic = [" readme" ]
6
6
license = " Apache-2.0"
Original file line number Diff line number Diff line change 1
1
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
2
3
3
__title__ = "onebusaway"
4
- __version__ = "1.13.5 " # x-release-please-version
4
+ __version__ = "1.14.0 " # x-release-please-version
You can’t perform that action at this time.
0 commit comments