From c98ea6fba67932ef8eba610cb2b2e1ac29ebc72a Mon Sep 17 00:00:00 2001 From: Chris Date: Sun, 5 Dec 2021 11:36:01 +0200 Subject: [PATCH] Bump version 21.12 --- CHANGES.rst | 11 +++++++++++ README.rst | 12 ++++++++---- tests/models/test_config.py | 2 +- xsdata/__init__.py | 2 +- 4 files changed, 21 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6ca660199..8e880a20f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,14 @@ +21.12 (2021-12-05) +------------------ +- Fixed wsdl generator to use operation name for rpc input messages `#609 `_ +- Fixed wsdl generator to check for qualified elements for message part types `#612 `_ +- Fixed compound field matcher to prefer exact types over derived `#617 `_ +- Added async to the reserved keywords `#600 `_ +- Added generator config for search & replace substitutions `#624 `_ +- Updated code generator to remove abstract elements from class attrs `#627 `_ +- Updated code generator to filter out all unused types `#629 `_ + + 21.11 (2021-11-02) ------------------ - Fixed unescaped quotes in regex pattern `#592 `_ diff --git a/README.rst b/README.rst index c3bccb046..b5ac6c8be 100644 --- a/README.rst +++ b/README.rst @@ -96,8 +96,12 @@ Features - Customize behaviour through config -Changelog: 21.11 (2021-11-02) +Changelog: 21.12 (2021-12-05) ----------------------------- -- Fixed unescaped quotes in regex pattern `#592 `_ -- Added config option fail_on_unknown_attributes `#597 `_ -- Fixed build for python 3.10 +- Fixed wsdl generator to use operation name for rpc input messages `#609 `_ +- Fixed wsdl generator to check for qualified elements for message part types `#612 `_ +- Fixed compound field matcher to prefer exact types over derived `#617 `_ +- Added async to the reserved keywords `#600 `_ +- Added generator config for search & replace substitutions `#624 `_ +- Updated code generator to remove abstract elements from class attrs `#627 `_ +- Updated code generator to filter out all unused types `#629 `_ diff --git a/tests/models/test_config.py b/tests/models/test_config.py index a3b16fab8..71371a700 100644 --- a/tests/models/test_config.py +++ b/tests/models/test_config.py @@ -26,7 +26,7 @@ def test_create(self): expected = ( '\n' - '\n' + '\n' ' \n' " generated\n" ' dataclasses\n' diff --git a/xsdata/__init__.py b/xsdata/__init__.py index 53d57257f..21412ff1e 100644 --- a/xsdata/__init__.py +++ b/xsdata/__init__.py @@ -1 +1 @@ -__version__ = "21.11" +__version__ = "21.12"