diff --git a/.changeset/add_backward_compatibility_for_exclusiveminimum_and_exclusivemaximum.md b/.changeset/add_backward_compatibility_for_exclusiveminimum_and_exclusivemaximum.md deleted file mode 100644 index 5fae1f660..000000000 --- a/.changeset/add_backward_compatibility_for_exclusiveminimum_and_exclusivemaximum.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -default: patch ---- - -# Allow OpenAPI 3.1-style `exclusiveMinimum` and `exclusiveMaximum` - -Fixed by PR #1092. Thanks @mikkelam! diff --git a/.changeset/add_missing_cast_import_when_using_const.md b/.changeset/add_missing_cast_import_when_using_const.md deleted file mode 100644 index b342da747..000000000 --- a/.changeset/add_missing_cast_import_when_using_const.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -default: patch ---- - -# Add missing `cast` import when using `const` - -Fixed by PR #1072. Thanks @dorcohe! diff --git a/.changeset/correctly_resolve_references_to_a_type_that_is_itself_just_a_single_allof_reference.md b/.changeset/correctly_resolve_references_to_a_type_that_is_itself_just_a_single_allof_reference.md deleted file mode 100644 index a55f8b7d1..000000000 --- a/.changeset/correctly_resolve_references_to_a_type_that_is_itself_just_a_single_allof_reference.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -default: patch ---- - -# Correctly resolve references to a type that is itself just a single allOf reference - -PR #1103 fixed issue #1091. Thanks @eli-bl! diff --git a/.changeset/support_const_booleans_and_floats.md b/.changeset/support_const_booleans_and_floats.md deleted file mode 100644 index af00788d1..000000000 --- a/.changeset/support_const_booleans_and_floats.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -default: patch ---- - -# Support `const` booleans and floats - -Fixed in PR #1086. Thanks @flxdot! diff --git a/CHANGELOG.md b/CHANGELOG.md index de5653d5a..fba4067f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,26 @@ Programmatic usage of this project (e.g., importing it as a Python module) and t 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). +## 0.21.4 (2024-08-25) + +### Fixes + +#### Allow OpenAPI 3.1-style `exclusiveMinimum` and `exclusiveMaximum` + +Fixed by PR #1092. Thanks @mikkelam! + +#### Add missing `cast` import when using `const` + +Fixed by PR #1072. Thanks @dorcohe! + +#### Correctly resolve references to a type that is itself just a single allOf reference + +PR #1103 fixed issue #1091. Thanks @eli-bl! + +#### Support `const` booleans and floats + +Fixed in PR #1086. Thanks @flxdot! + ## 0.21.3 (2024-08-18) ### Features diff --git a/pyproject.toml b/pyproject.toml index 43aab74b7..0689285df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ dependencies = [ "typing-extensions>=4.8.0,<5.0.0", ] name = "openapi-python-client" -version = "0.21.3" +version = "0.21.4" description = "Generate modern Python clients from OpenAPI" keywords = [ "OpenAPI",