Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releasing v23.7 #833

Merged
merged 1 commit into from
Jul 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
23.7 (2023-07-23)
-----------------
- Fixed decimal converter to avoid scientific notations (`#826 <https://github.com/tefra/xsdata/pull/826>`_)
- Fixed nympy paramater docstring format (`#827 <https://github.com/tefra/xsdata/pull/827>`_)
- Fixed optional/required override validation (`#820 <https://github.com/tefra/xsdata/pull/820>`_)
- Fixed WSDL mapper to respect the elements original location (`#832 <https://github.com/tefra/xsdata/pull/832>`_)
- Added Python 3.12 support


23.6 (2023-06-24)
-----------------
- Fixed conflicting enum values leading to wrong default values (`#806 <https://github.com/tefra/xsdata/pull/806>`_)
Expand Down
16 changes: 6 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,10 @@ Features



Changelog: 23.6 (2023-06-24)
Changelog: 23.7 (2023-07-23)
----------------------------
- Fixed conflicting enum values leading to wrong default values (`#806 <https://github.com/tefra/xsdata/pull/806>`_)
- Added support for custom decorators and base classes (`#793 <https://github.com/tefra/xsdata/pull/793>`_)
- Added parser config to load external dtd to resolve entities (`#797 <https://github.com/tefra/xsdata/pull/797>`_)
- Added requests sessions on the wsdl client transport (`#798 <https://github.com/tefra/xsdata/pull/798>`_)
- Added support subscriptable types and UnionType (`#801 <https://github.com/tefra/xsdata/pull/801>`_)
- Added option to restrict models package for auto-locator (`#809 <https://github.com/tefra/xsdata/pull/809>`_)
- Updated context to only cache supported classes (`#796 <https://github.com/tefra/xsdata/pull/796>`_)
- Removed tox requirement (`#800 <https://github.com/tefra/xsdata/pull/800>`_)
- Converted to pyproject.toml (`#802 <https://github.com/tefra/xsdata/pull/802>`_)
- Fixed decimal converter to avoid scientific notations (`#826 <https://github.com/tefra/xsdata/pull/826>`_)
- Fixed nympy paramater docstring format (`#827 <https://github.com/tefra/xsdata/pull/827>`_)
- Fixed optional/required override validation (`#820 <https://github.com/tefra/xsdata/pull/820>`_)
- Fixed WSDL mapper to respect the elements original location (`#832 <https://github.com/tefra/xsdata/pull/832>`_)
- Added Python 3.12 support
4 changes: 1 addition & 3 deletions tests/fixtures/docstrings/accessible/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ class Meta:

@dataclass
class DoubleQuotesSummary:
"""
Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum.
"""
"""Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum"""
class Meta:
namespace = "urn:docs"

Expand Down
4 changes: 1 addition & 3 deletions tests/fixtures/docstrings/google/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ class Meta:

@dataclass
class DoubleQuotesSummary:
"""
Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum.
"""
"""Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum"""
class Meta:
namespace = "urn:docs"

Expand Down
4 changes: 1 addition & 3 deletions tests/fixtures/docstrings/numpy/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ class Meta:

@dataclass
class DoubleQuotesSummary:
"""
Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum.
"""
"""Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum"""
class Meta:
namespace = "urn:docs"

Expand Down
4 changes: 1 addition & 3 deletions tests/fixtures/docstrings/rst/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ class Meta:

@dataclass
class DoubleQuotesSummary:
"""
Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum.
"""
"""Dont trip on quotes: "A", "B", "C", "D" My\\Ipsum"""
class Meta:
namespace = "urn:docs"

Expand Down
2 changes: 1 addition & 1 deletion xsdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "23.6"
__version__ = "23.7"
Loading