From 50c6e475d9a119eadfda2107508dca548510b108 Mon Sep 17 00:00:00 2001 From: Davide Brunato Date: Mon, 26 Jun 2023 15:41:25 +0200 Subject: [PATCH] Bump bugfix release and use mypy==1.4.1 for static typing checks --- .github/workflows/test-elementpath.yml | 2 +- CHANGELOG.rst | 6 ++++++ doc/conf.py | 2 +- elementpath/__init__.py | 2 +- publiccode.yml | 4 ++-- setup.py | 2 +- tox.ini | 2 +- 7 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-elementpath.yml b/.github/workflows/test-elementpath.yml index 9ee94be9..d0bb4968 100644 --- a/.github/workflows/test-elementpath.yml +++ b/.github/workflows/test-elementpath.yml @@ -42,7 +42,7 @@ jobs: - name: Lint with mypy if Python version != 3.7 if: ${{ matrix.python-version != '3.7' }} run: | - pip install mypy==1.3.0 xmlschema lxml-stubs + pip install mypy==1.4.1 xmlschema lxml-stubs mypy --show-error-codes --strict elementpath - name: Test with unittest run: | diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7b3f5095..b33e8d6d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ CHANGELOG ********* +`v4.1.4`_ (2023-06-26) +====================== +* Fix select of prefixed names (issue #68) +* Fix zero length *xs:base64Binary* (pull request #69) + `v4.1.3`_ (2023-06-17) ====================== * Fix XP30+ fn:path (issue #67) @@ -424,3 +429,4 @@ CHANGELOG .. _v4.1.1: https://github.com/sissaschool/elementpath/compare/v4.1.0...v4.1.1 .. _v4.1.2: https://github.com/sissaschool/elementpath/compare/v4.1.1...v4.1.2 .. _v4.1.3: https://github.com/sissaschool/elementpath/compare/v4.1.2...v4.1.3 +.. _v4.1.4: https://github.com/sissaschool/elementpath/compare/v4.1.3...v4.1.4 diff --git a/doc/conf.py b/doc/conf.py index 5a49e6ff..fddb6555 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -31,7 +31,7 @@ # The short X.Y version version = '4.1' # The full version, including alpha/beta/rc tags -release = '4.1.3' +release = '4.1.4' # -- General configuration --------------------------------------------------- diff --git a/elementpath/__init__.py b/elementpath/__init__.py index 0c143f08..3b2dd4ad 100644 --- a/elementpath/__init__.py +++ b/elementpath/__init__.py @@ -7,7 +7,7 @@ # # @author Davide Brunato # -__version__ = '4.1.3' +__version__ = '4.1.4' __author__ = "Davide Brunato" __contact__ = "brunato@sissa.it" __copyright__ = "Copyright 2018-2023, SISSA" diff --git a/publiccode.yml b/publiccode.yml index 1e8f9fe2..49aef9c3 100644 --- a/publiccode.yml +++ b/publiccode.yml @@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2' name: elementpath url: 'https://github.com/sissaschool/elementpath' landingURL: 'https://github.com/sissaschool/elementpath' -releaseDate: '2023-06-17' -softwareVersion: v4.1.3 +releaseDate: '2023-06-26' +softwareVersion: v4.1.4 developmentStatus: stable platforms: - linux diff --git a/setup.py b/setup.py index be2dc515..b102f7ca 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='elementpath', - version='4.1.3', + version='4.1.4', packages=find_packages(include=['elementpath', 'elementpath.*']), package_data={ 'elementpath': ['py.typed'], diff --git a/tox.ini b/tox.ini index f1e4b8b4..42ab764f 100644 --- a/tox.ini +++ b/tox.ini @@ -47,7 +47,7 @@ commands = [testenv:mypy-py{38,39,310,311,312,py3}] deps = - mypy==1.3.0 + mypy==1.4.1 xmlschema lxml-stubs commands =