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

Prepare v22.8 #700

Merged
merged 1 commit into from
Aug 21, 2022
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
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
22.8 (2022-08-21)
-----------------
- Added pycode serializer `#626 <https://github.com/tefra/xsdata/issues/626>`_
- Added option to filter out unused global types `#691 <https://github.com/tefra/xsdata/issues/691>`_
- Avoid using generics for mixed content when possible `#696 <https://github.com/tefra/xsdata/pull/696>`_
- Removed support for python 3.6 `#671 <https://github.com/tefra/xsdata/pull/671>`_


22.7 (2022-07-22)
-----------------
- Fix empty lists do not get serialized `#686 <https://github.com/tefra/xsdata/issues/686>`_
Expand Down
13 changes: 7 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,16 +91,17 @@ Features
- Data Binding:

- XML and JSON parser, serializer
- PyCode serializer
- Handlers and Writers based on lxml and native xml python
- Support wildcard elements and attributes
- Support xinclude statements and unknown properties
- Customize behaviour through config


Changelog: 22.7 (2022-07-22)
----------------------------
- Fix empty lists do not get serialized `#686 <https://github.com/tefra/xsdata/issues/686>`_
- Added external DTD code generator `#688 <https://github.com/tefra/xsdata/pull/688>`_
- Added support for python 3.11

In the next release we will drop python 3.6 support!!!
Changelog: 22.8 (2022-08-21)
----------------------------
- Added pycode serializer `#626 <https://github.com/tefra/xsdata/issues/626>`_
- Added option to filter out unused global types `#691 <https://github.com/tefra/xsdata/issues/691>`_
- Avoid using generics for mixed content when possible `#696 <https://github.com/tefra/xsdata/pull/696>`_
- Removed support for python 3.6 `#671 <https://github.com/tefra/xsdata/pull/671>`_
1 change: 1 addition & 0 deletions docs/api/codegen.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ like naming conventions and substitutions.
GeneratorSubstitutions
StructureStyle
DocstringStyle
ClassFilterStrategy
CompoundFields
ObjectType
GeneratorSubstitution
Expand Down
2 changes: 2 additions & 0 deletions tests/formats/dataclass/parsers/test_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@


class NodeParserTests(TestCase):
maxDiff = None

def setUp(self):
self.parser = NodeParser()

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37,py38,py39,py310,pypy3
envlist = py37,py38,py39,py310,pypy3
skip_missing_interpreters = true

[testenv]
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.7"
__version__ = "22.8"