From 1fec398676191ab4e15f63bf80915bd607423683 Mon Sep 17 00:00:00 2001 From: Christodoulos Tsoulloftas Date: Sun, 3 Nov 2024 08:59:45 +0200 Subject: [PATCH] Bump version 24.11 --- CHANGES.md | 16 ++++++++++++++++ README.md | 14 +++++++++----- xsdata/__init__.py | 2 +- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 87b071586..e38037911 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,19 @@ +## 24.11 (2024-11-03) + +**Fixes** + +- Avoid conflict with attributes named value when flattening extensions + ([#1085](https://github.com/tefra/xsdata/pull/1085)) + +**Features** + +- Add cli config to use generic collections + ([#1082](https://github.com/tefra/xsdata/pull/1082)) + +**Deprecations** + +- Drop support for python 3.8 + ## 24.9 (2024-09-21) **Fixes** diff --git a/README.md b/README.md index 1ea02b3f2..ec14b654f 100644 --- a/README.md +++ b/README.md @@ -74,14 +74,18 @@ Check the [documentation](https://xsdata.readthedocs.io) for more ✨✨✨ - Support xinclude statements and unknown properties - Customize behaviour through config -## Changelog: 24.9 (2024-09-21) +## Changelog: 24.11 (2024-11-03) **Fixes** -- Fix typing annotations deprecation warning in Python 3.13 - ([#1077](https://github.com/tefra/xsdata/pull/1077)) +- Avoid conflict with attributes named value when flattening extensions + ([#1085](https://github.com/tefra/xsdata/pull/1085)) **Features** -- Allow generators as array elements - ([#1074](https://github.com/tefra/xsdata/pull/1074)) +- Add cli config to use generic collections + ([#1082](https://github.com/tefra/xsdata/pull/1082)) + +**Deprecations** + +- Drop support for python 3.8 diff --git a/xsdata/__init__.py b/xsdata/__init__.py index b73ba54f5..580232f75 100644 --- a/xsdata/__init__.py +++ b/xsdata/__init__.py @@ -1 +1 @@ -__version__ = "24.9" +__version__ = "24.11"