Skip to content

Commit

Permalink
Update release info (v2.5.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Dec 19, 2023
1 parent e674e83 commit faff4d8
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-xmlschema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ jobs:
- name: Lint with mypy if Python version != 3.7
if: ${{ matrix.python-version != '3.7' }}
run: |
pip install mypy==1.5.1 elementpath==4.1.5 lxml-stubs
pip install mypy==1.7.1 elementpath==4.1.5 lxml-stubs
mypy --show-error-codes --strict xmlschema
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
CHANGELOG
*********

`v2.5.1`_ (2023-12-19)
======================
* Fix slowness of key selectors introduced by v2.5.0 (issue #378)
* Remove redundant wheel dep from pyproject.toml and unnecessary build deps from tox.ini (PR #368)

`v2.5.0`_ (2023-09-21)
======================
* Fix identity keys tracking with additional full XPath checks on XML data
Expand Down Expand Up @@ -640,3 +645,4 @@ v0.9.6 (2017-05-05)
.. _v2.3.1: https://github.com/brunato/xmlschema/compare/v2.3.0...v2.3.1
.. _v2.4.0: https://github.com/brunato/xmlschema/compare/v2.3.1...v2.4.0
.. _v2.5.0: https://github.com/brunato/xmlschema/compare/v2.4.0...v2.5.0
.. _v2.5.1: https://github.com/brunato/xmlschema/compare/v2.5.0...v2.5.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 = '2.5'
# The full version, including alpha/beta/rc tags.
release = '2.5.0'
release = '2.5.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: '2023-09-21'
softwareVersion: v2.5.0
releaseDate: '2023-12-19'
softwareVersion: v2.5.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='2.5.0',
version='2.5.1',
packages=find_packages(include=['xmlschema*']),
package_data={
'xmlschema': ['py.typed', 'locale/**/*.mo', 'locale/**/*.po', 'schemas/*/*.xsd'],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ commands =

[testenv:mypy-py{38,39,310,311,312,py3}]
deps =
mypy==1.5.1
mypy==1.7.1
elementpath==4.1.5
lxml-stubs
jinja2
Expand All @@ -64,7 +64,7 @@ deps =
elementpath>=4.1.5, <5.0.0
lxml
jinja2
mypy==1.5.1
mypy==1.7.1
lxml-stubs
commands =
pytest tests -ra
Expand Down
2 changes: 1 addition & 1 deletion xmlschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
XsdComponent, XsdType, XsdElement, XsdAttribute
)

__version__ = '2.5.0'
__version__ = '2.5.1'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2016-2023, SISSA"
Expand Down

0 comments on commit faff4d8

Please sign in to comment.