You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,27 @@
1
1
# Changelog
2
2
3
+
## 0.1.0-alpha.12 (2024-08-08)
4
+
5
+
Full Changelog: [v0.1.0-alpha.11...v0.1.0-alpha.12](https://github.com/OneBusAway/python-sdk/compare/v0.1.0-alpha.11...v0.1.0-alpha.12)
6
+
7
+
### Features
8
+
9
+
***api:** OpenAPI spec update via Stainless API ([#48](https://github.com/OneBusAway/python-sdk/issues/48)) ([a5c305c](https://github.com/OneBusAway/python-sdk/commit/a5c305c7a5614588dd3fb14607dd2489aab8b3c6))
10
+
***api:** OpenAPI spec update via Stainless API ([#55](https://github.com/OneBusAway/python-sdk/issues/55)) ([9adae4d](https://github.com/OneBusAway/python-sdk/commit/9adae4de96b8ea11ff8e2d7c251183580f86cf8a))
11
+
***api:** OpenAPI spec update via Stainless API ([#56](https://github.com/OneBusAway/python-sdk/issues/56)) ([1882cdc](https://github.com/OneBusAway/python-sdk/commit/1882cdc8a4da9705c853ed6f5d5e8d73a4b9276c))
12
+
***api:** OpenAPI spec update via Stainless API ([#57](https://github.com/OneBusAway/python-sdk/issues/57)) ([5c8a7ee](https://github.com/OneBusAway/python-sdk/commit/5c8a7ee00dcd4ab6a3a9b6800fe10f7447d79c61))
13
+
***api:** OpenAPI spec update via Stainless API ([#58](https://github.com/OneBusAway/python-sdk/issues/58)) ([29edb45](https://github.com/OneBusAway/python-sdk/commit/29edb45798ad111a1a4f6ce5bbbbadfe3e9099d8))
14
+
***client:** add `retry_count` to raw response class ([#51](https://github.com/OneBusAway/python-sdk/issues/51)) ([97156e5](https://github.com/OneBusAway/python-sdk/commit/97156e5dff5d743d04ecc0dbe73ec7c690dfb4fe))
***internal:** test updates ([#52](https://github.com/OneBusAway/python-sdk/issues/52)) ([f3b7cb0](https://github.com/OneBusAway/python-sdk/commit/f3b7cb00c4302b0ac1b8497835f2db0d3f9e7949))
23
+
***internal:** update pydantic compat helper function ([#54](https://github.com/OneBusAway/python-sdk/issues/54)) ([1f501f0](https://github.com/OneBusAway/python-sdk/commit/1f501f0592c92e86c4c027f652a49ff11a068715))
24
+
3
25
## 0.1.0-alpha.11 (2024-08-01)
4
26
5
27
Full Changelog: [v0.1.0-alpha.10...v0.1.0-alpha.11](https://github.com/OneBusAway/python-sdk/compare/v0.1.0-alpha.10...v0.1.0-alpha.11)
Copy file name to clipboardExpand all lines: pyproject.toml
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "onebusaway"
3
-
version = "0.1.0-alpha.11"
3
+
version = "0.1.0-alpha.12"
4
4
description = "The official Python library for the onebusaway-sdk API"
5
5
dynamic = ["readme"]
6
6
license = "Apache-2.0"
@@ -77,8 +77,8 @@ format = { chain = [
77
77
"check:ruff",
78
78
"typecheck",
79
79
]}
80
-
"check:ruff" = "ruff ."
81
-
"fix:ruff" = "ruff --fix ."
80
+
"check:ruff" = "ruff check ."
81
+
"fix:ruff" = "ruff check --fix ."
82
82
83
83
typecheck = { chain = [
84
84
"typecheck:pyright",
@@ -162,6 +162,11 @@ reportPrivateUsage = false
162
162
line-length = 120
163
163
output-format = "grouped"
164
164
target-version = "py37"
165
+
166
+
[tool.ruff.format]
167
+
docstring-code-format = true
168
+
169
+
[tool.ruff.lint]
165
170
select = [
166
171
# isort
167
172
"I",
@@ -190,10 +195,6 @@ unfixable = [
190
195
"T201",
191
196
"T203",
192
197
]
193
-
ignore-init-module-imports = true
194
-
195
-
[tool.ruff.format]
196
-
docstring-code-format = true
197
198
198
199
[tool.ruff.lint.flake8-tidy-imports.banned-api]
199
200
"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"
0 commit comments