Skip to content

Commit

Permalink
Releasing v22.3 (#668)
Browse files Browse the repository at this point in the history
Releasing v22.3
  • Loading branch information
tefra authored Mar 20, 2022
1 parent 3bedb4a commit 94cb842
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ exclude: tests/fixtures

repos:
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
rev: v2.31.1
hooks:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/asottile/reorder_python_imports
rev: v2.7.1
rev: v3.0.1
hooks:
- id: reorder-python-imports
- repo: https://github.com/ambv/black
Expand Down Expand Up @@ -37,7 +37,7 @@ repos:
- id: docformatter
args: ["--in-place", "--pre-summary-newline"]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.931
rev: v0.941
hooks:
- id: mypy
additional_dependencies: [tokenize-rt, types-requests, types-Jinja2, types-click, types-docutils]
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
22.3 (2022-03-20)
-----------------
- Added official support for python 3.11
- Fixed enumerations restricting complex types `#659 <https://github.com/tefra/xsdata/issues/659>`_
- Fixed attribute name duplicate check to avoid invalid slugs

22.2 (2022-02-06)
-----------------
- Fixed substitution groups on duplicate global types `#648 <https://github.com/tefra/xsdata/issues/648>`_
Expand Down
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ Features
- Customize behaviour through config


Changelog: 22.2 (2022-02-06)
-----------------------------
- Fixed substitution groups on duplicate global types `#648 <https://github.com/tefra/xsdata/issues/648>`_
- Added Postponed Annotations config option `#646 <https://github.com/tefra/xsdata/issues/646>`_
- Added support for subclasses with different namespaces `#654 <https://github.com/tefra/xsdata/issues/654>`_
Changelog: 22.3 (2022-03-20)
----------------------------
- Added official support for python 3.11
- Fixed enumerations restricting complex types `#659 <https://github.com/tefra/xsdata/issues/659>`_
- Fixed attribute name duplicate check to avoid invalid slugs
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ commands =
tests/integration/benchmarks

[testenv:docs]
basepython = python3.8
basepython = python3.9
extras = docs,cli,lxml
changedir = docs
commands =
sphinx-build -b html . _build

[testenv:build]
basepython = python3.7
basepython = python3.9
skip_install = true
deps =
wheel
Expand All @@ -32,7 +32,7 @@ commands =
twine check dist/*

[testenv:release]
basepython = python3
basepython = python3.9
skip_install = true
deps = {[testenv:build]deps}
commands_pre =
Expand Down
2 changes: 1 addition & 1 deletion xsdata/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "22.2"
__version__ = "22.3"

0 comments on commit 94cb842

Please sign in to comment.