Skip to content

Commit

Permalink
Update release info and fix CI tests
Browse files Browse the repository at this point in the history
  - Bump bugfix release
  - Fix decoding tests check for Windows systems (uppercase IDs)
  • Loading branch information
brunato committed Jun 14, 2023
1 parent 9a78cf3 commit c1578b5
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -2,6 +2,11 @@
CHANGELOG
*********

`v2.3.1`_ (2023-06-14)
======================
* Meta-schema elements and groups ignore xsi:type attributes (issue #350)
* Use the meta-schemas only for validating XSD sources otherwise create dummy schemas

`v2.3.0`_ (2023-05-18)
======================
* Improve sequence/all restriction checks for XSD 1.1
Expand Down Expand Up @@ -622,3 +627,4 @@ v0.9.6 (2017-05-05)
.. _v2.2.2: https://github.com/brunato/xmlschema/compare/v2.2.1...v2.2.2
.. _v2.2.3: https://github.com/brunato/xmlschema/compare/v2.2.2...v2.2.3
.. _v2.3.0: https://github.com/brunato/xmlschema/compare/v2.2.3...v2.3.0
.. _v2.3.1: https://github.com/brunato/xmlschema/compare/v2.3.0...v2.3.1
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -81,7 +81,7 @@
# The short X.Y version.
version = '2.3'
# The full version, including alpha/beta/rc tags.
release = '2.3.0'
release = '2.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions publiccode.yml
Expand Up @@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2'
name: xmlschema
url: 'https://github.com/sissaschool/xmlschema'
landingURL: 'https://github.com/sissaschool/xmlschema'
releaseDate: '2023-05-18'
softwareVersion: v2.3.0
releaseDate: '2023-06-14'
softwareVersion: v2.3.1
developmentStatus: stable
platforms:
- linux
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -18,7 +18,7 @@

setup(
name='xmlschema',
version='2.3.0',
version='2.3.1',
packages=find_packages(include=['xmlschema*']),
package_data={
'xmlschema': ['py.typed', 'locale/**/*.mo', 'locale/**/*.po', 'schemas/*/*.xsd'],
Expand Down
2 changes: 1 addition & 1 deletion xmlschema/__init__.py
Expand Up @@ -31,7 +31,7 @@
XsdComponent, XsdType, XsdElement, XsdAttribute
)

__version__ = '2.3.0'
__version__ = '2.3.1'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2016-2023, SISSA"
Expand Down
2 changes: 1 addition & 1 deletion xmlschema/testing/_builders.py
Expand Up @@ -50,7 +50,7 @@
from ._observers import SchemaObserver


OBJ_ID_PATTERN = re.compile(r" at 0x[0-9a-f]+")
OBJ_ID_PATTERN = re.compile(r" at 0x[0-9a-fA-F]+")


def make_schema_test_class(test_file, test_args, test_num, schema_class, check_with_lxml):
Expand Down

0 comments on commit c1578b5

Please sign in to comment.