Skip to content

Commit

Permalink
Releasing v23.7 (#833)
Browse files Browse the repository at this point in the history
  • Loading branch information
tefra committed Jul 23, 2023
1 parent 7372769 commit cb80011
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 23 deletions.
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"

0 comments on commit cb80011

Please sign in to comment.