Skip to content

Commit

Permalink
Releasing v23.8 (#844)
Browse files Browse the repository at this point in the history
  • Loading branch information
tefra committed Aug 12, 2023
1 parent 548b736 commit 31f672a
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ exclude: tests/fixtures

repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.10.1
hooks:
- id: pyupgrade
args: [ --py38-plus ]
Expand All @@ -19,7 +19,7 @@ repos:
hooks:
- id: autoflake
- repo: https://github.com/PyCQA/flake8
rev: 6.0.0
rev: 6.1.0
hooks:
- id: flake8
additional_dependencies: [
Expand All @@ -41,7 +41,7 @@ repos:
- id: docformatter
args: [ "--in-place", "--pre-summary-newline" ]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.4.1
rev: v1.5.0
hooks:
- id: mypy
files: ^(xsdata/)
Expand Down
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
23.8 (2023-08-12)
-----------------
- Removed Python 3.7 support
- Fixed PycodeSerializer not adding imports for nested classes
- Fixed imports ordering
- Added support for strict content wildcard processing (`#803 <https://github.com/tefra/xsdata/pull/803>`_)


23.7 (2023-07-23)
-----------------
- Fixed decimal converter to avoid scientific notations (`#826 <https://github.com/tefra/xsdata/pull/826>`_)
Expand Down
11 changes: 5 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,9 @@ Features



Changelog: 23.7 (2023-07-23)
Changelog: 23.8 (2023-08-12)
----------------------------
- 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
- Removed Python 3.7 support
- Fixed PycodeSerializer not adding imports for nested classes
- Fixed imports ordering
- Added support for strict content wildcard processing (`#803 <https://github.com/tefra/xsdata/pull/803>`_)
2 changes: 1 addition & 1 deletion xsdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "23.7"
__version__ = "23.8"

0 comments on commit 31f672a

Please sign in to comment.