Skip to content

Commit

Permalink
Bump bugfix release
Browse files Browse the repository at this point in the history
  - Fix import of Counter for static typing with Python 3.8
  • Loading branch information
brunato committed Apr 7, 2024
1 parent aefe4be commit 0a28b83
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
*********

`v3.2.1`_ (2024-04-07)
======================
* Improve ModelVisitor and particle occurs checking
* Fix interleave mode with XSD 1.1 open content (issue #397)
* Fix for export/download of XSD sources with commented-out imports/include (issue #387)

`v3.2.0`_ (2024-03-25)
======================
* Add *download_schemas()* to package API (#387)
Expand Down Expand Up @@ -685,3 +691,4 @@ v0.9.6 (2017-05-05)
.. _v3.0.2: https://github.com/brunato/xmlschema/compare/v3.0.1...v3.0.2
.. _v3.1.0: https://github.com/brunato/xmlschema/compare/v3.0.2...v3.1.0
.. _v3.2.0: https://github.com/brunato/xmlschema/compare/v3.1.0...v3.2.0
.. _v3.2.1: https://github.com/brunato/xmlschema/compare/v3.2.0...v3.2.1
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# The short X.Y version.
version = '3.2'
# The full version, including alpha/beta/rc tags.
release = '3.2.0'
release = '3.2.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
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2'
name: xmlschema
url: 'https://github.com/sissaschool/xmlschema'
landingURL: 'https://github.com/sissaschool/xmlschema'
releaseDate: '2024-03-25'
softwareVersion: v3.2.0
releaseDate: '2024-04-07'
softwareVersion: v3.2.1
developmentStatus: stable
platforms:
- linux
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='xmlschema',
version='3.2.0',
version='3.2.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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
XMLSchema, XMLSchema10, XMLSchema11, XsdComponent, XsdType, XsdElement, XsdAttribute
)

__version__ = '3.2.0'
__version__ = '3.2.1'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2016-2024, SISSA"
Expand Down
3 changes: 1 addition & 2 deletions xmlschema/aliases.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@
'ElementHookType', 'UriMapperType', 'OccursCounterType']

if TYPE_CHECKING:
from collections import Counter
from decimal import Decimal
from pathlib import Path
from typing import Any, Callable, Dict, List, IO, Iterator, \
from typing import Any, Callable, Counter, Dict, List, IO, Iterator, \
MutableMapping, Tuple, Type, Union
from xml.etree import ElementTree

Expand Down

0 comments on commit 0a28b83

Please sign in to comment.