Skip to content

Commit cc8a6a6

Browse files
author
GitHub
committed
chore: prepare release 0.17.3
1 parent 7b0b93a commit cc8a6a6

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.changeset/fix_invalid_type_check_for_nested_unions.md

-9
This file was deleted.

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ Programmatic usage of this project (e.g., importing it as a Python module) and t
1313

1414
The 0.x prefix used in versions for this project is to indicate that breaking changes are expected frequently (several times a year). Breaking changes will increment the minor number, all other changes will increment the patch number. You can track the progress toward 1.0 [here](https://github.com/openapi-generators/openapi-python-client/projects/2).
1515

16+
## 0.17.3 (2024-02-20)
17+
18+
### Fixes
19+
20+
#### Remove spurious field_dict.update({}) for types without properties (#969)
21+
22+
#### Fix invalid type check for nested unions
23+
24+
Nested union types (unions of unions) were generating `isinstance()` checks that were not valid (at least for Python 3.9).
25+
26+
Thanks to @codebutler for PR #959 which fixes #958 and #967.
27+
1628
## 0.17.2 (2024-01-15)
1729

1830
### Features

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies = [
1818
"typing-extensions>=4.8.0,<5.0.0",
1919
]
2020
name = "openapi-python-client"
21-
version = "0.17.2"
21+
version = "0.17.3"
2222
description = "Generate modern Python clients from OpenAPI"
2323
keywords = [
2424
"OpenAPI",

0 commit comments

Comments
 (0)