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
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,35 @@
1
1
# Changelog
2
2
3
+
## 0.5.0 (2025-01-10)
4
+
5
+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/riza-io/riza-api-python/compare/v0.4.0...v0.5.0)
6
+
7
+
### Features
8
+
9
+
***api:** api update ([#102](https://github.com/riza-io/riza-api-python/issues/102)) ([c8ea4ee](https://github.com/riza-io/riza-api-python/commit/c8ea4ee239378ce5b9da4d09632e92aa6888701b))
10
+
***api:** api update ([#103](https://github.com/riza-io/riza-api-python/issues/103)) ([dd6e86b](https://github.com/riza-io/riza-api-python/commit/dd6e86b17f2be98752d94f957416ceec9869eaed))
11
+
***api:** api update ([#98](https://github.com/riza-io/riza-api-python/issues/98)) ([f7f7d5f](https://github.com/riza-io/riza-api-python/commit/f7f7d5f97e98b6b6ab7c6f83322c76ba732a4ca7))
12
+
13
+
14
+
### Bug Fixes
15
+
16
+
***client:** only call .close() when needed ([#99](https://github.com/riza-io/riza-api-python/issues/99)) ([2f1bc2d](https://github.com/riza-io/riza-api-python/commit/2f1bc2d99cc4abf2f1c5dcb37b8c560f466b0eae))
***client:** simplify `Optional[object]` to just `object` ([#95](https://github.com/riza-io/riza-api-python/issues/95)) ([3f86041](https://github.com/riza-io/riza-api-python/commit/3f86041e44d871aeab2f6986d2f1702ddf0a9515))
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ except rizaio.APIStatusError as e:
110
110
print(e.response)
111
111
```
112
112
113
-
Error codes are as followed:
113
+
Error codes are as follows:
114
114
115
115
| Status Code | Error Type |
116
116
| ----------- | -------------------------- |
@@ -253,8 +253,7 @@ If you need to access undocumented endpoints, params, or response properties, th
253
253
#### Undocumented endpoints
254
254
255
255
To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
256
-
http verbs. Options on the client will be respected (such as retries) will be respected when making this
257
-
request.
256
+
http verbs. Options on the client will be respected (such as retries) when making this request.
258
257
259
258
```py
260
259
import httpx
@@ -326,7 +325,7 @@ with Riza() as client:
326
325
This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
327
326
328
327
1. Changes that only affect static types, without breaking runtime behavior.
329
-
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals)_.
328
+
2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
330
329
3. Changes that we do not expect to impact the vast majority of users in practice.
331
330
332
331
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
0 commit comments