From 52ca9eccbd6bddf285673560b0ac0d911ef0c760 Mon Sep 17 00:00:00 2001 From: Davide Brunato Date: Fri, 24 Jun 2022 14:54:05 +0200 Subject: [PATCH] Bump release --- CHANGELOG.rst | 6 ++++++ publiccode.yml | 4 ++-- setup.py | 2 +- xmlschema/__init__.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 44b7d92b..5ba56bd2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ********* +`v1.11.3`_ (2022-06-24) +======================= +* Fix invalid element not detected with empty particle (issue #306) +* Fix Sphinx warnings (issue #305) + `v1.11.2`_ (2022-06-11) ======================= * Fix 'replace_existing' argument usage in `XsdElement.get_binding` method (issue #300) @@ -537,3 +542,4 @@ v0.9.6 (2017-05-05) .. _v1.11.0: https://github.com/brunato/xmlschema/compare/v1.10.0...v1.11.0 .. _v1.11.1: https://github.com/brunato/xmlschema/compare/v1.11.0...v1.11.1 .. _v1.11.2: https://github.com/brunato/xmlschema/compare/v1.11.1...v1.11.2 +.. _v1.11.3: https://github.com/brunato/xmlschema/compare/v1.11.2...v1.11.3 diff --git a/publiccode.yml b/publiccode.yml index 8069fe4d..5d7db2ee 100644 --- a/publiccode.yml +++ b/publiccode.yml @@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2' name: xmlschema url: 'https://github.com/sissaschool/xmlschema' landingURL: 'https://github.com/sissaschool/xmlschema' -releaseDate: '2022-06-11' -softwareVersion: v1.11.2 +releaseDate: '2022-06-24' +softwareVersion: v1.11.3 developmentStatus: stable platforms: - linux diff --git a/setup.py b/setup.py index efe49563..befebc07 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='xmlschema', - version='1.11.2', + version='1.11.3', packages=find_packages(include=['xmlschema', 'xmlschema.*']), include_package_data=True, entry_points={ diff --git a/xmlschema/__init__.py b/xmlschema/__init__.py index c5d42cd9..639fd58d 100644 --- a/xmlschema/__init__.py +++ b/xmlschema/__init__.py @@ -30,7 +30,7 @@ XsdComponent, XsdType, XsdElement, XsdAttribute ) -__version__ = '1.11.2' +__version__ = '1.11.3' __author__ = "Davide Brunato" __contact__ = "brunato@sissa.it" __copyright__ = "Copyright 2016-2022, SISSA"