diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c81e969ed..599d4ea20 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,6 @@ jobs: - {name: Python 3.10, python: '3.10', os: ubuntu} - {name: Python 3.11, python: '3.11', os: ubuntu} - {name: Python 3.12, python: '3.12', os: ubuntu} - - {name: Python 3.13, python: '3.13-dev', os: ubuntu} steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python }} diff --git a/CHANGES.md b/CHANGES.md index ff9c1f8e6..53c97b929 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,8 @@ +## 24.2.1 (2024-02-19) + +- Fixed FieldInfo type errors ([#949](https://github.com/tefra/xsdata/pull/949)) +- Fixed private package names ([#950](https://github.com/tefra/xsdata/pull/950)) + ## 24.2 (2024-02-17) - Added Dict encoder/decoder ([#921](https://github.com/tefra/xsdata/pull/921)) diff --git a/README.md b/README.md index 216c610d1..c69417e33 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,11 @@ Check the [documentation](https://xsdata.readthedocs.io) for more ✨✨✨ - Support xinclude statements and unknown properties - Customize behaviour through config +## Changelog: 24.2.1 (2024-02-19) + +- Fixed FieldInfo type errors ([#949](https://github.com/tefra/xsdata/pull/949)) +- Fixed private package names ([#950](https://github.com/tefra/xsdata/pull/950)) + ## Changelog: 24.2 (2024-02-17) - Added Dict encoder/decoder ([#921](https://github.com/tefra/xsdata/pull/921)) diff --git a/pyproject.toml b/pyproject.toml index 71d107542..b42491dc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,6 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", - "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Software Development :: Code Generators", diff --git a/xsdata/__init__.py b/xsdata/__init__.py index e83b37ee0..d4641d712 100644 --- a/xsdata/__init__.py +++ b/xsdata/__init__.py @@ -1 +1 @@ -__version__ = "24.2" +__version__ = "24.2.1"