diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b33e8d6d..a4086489 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,10 @@ CHANGELOG ********* +`v4.1.5`_ (2023-07-25) +====================== +* Fix typed value of ElementNode() if self.elem.text is None + `v4.1.4`_ (2023-06-26) ====================== * Fix select of prefixed names (issue #68) @@ -430,3 +434,4 @@ CHANGELOG .. _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 +.. _v4.1.5: https://github.com/sissaschool/elementpath/compare/v4.1.4...v4.1.5 diff --git a/doc/conf.py b/doc/conf.py index fddb6555..f2a68907 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.4' +release = '4.1.5' # -- General configuration --------------------------------------------------- diff --git a/elementpath/__init__.py b/elementpath/__init__.py index 3b2dd4ad..d15bfabc 100644 --- a/elementpath/__init__.py +++ b/elementpath/__init__.py @@ -7,7 +7,7 @@ # # @author Davide Brunato # -__version__ = '4.1.4' +__version__ = '4.1.5' __author__ = "Davide Brunato" __contact__ = "brunato@sissa.it" __copyright__ = "Copyright 2018-2023, SISSA" diff --git a/publiccode.yml b/publiccode.yml index 49aef9c3..4ccc0d67 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-26' -softwareVersion: v4.1.4 +releaseDate: '2023-07-25' +softwareVersion: v4.1.5 developmentStatus: stable platforms: - linux diff --git a/setup.py b/setup.py index b102f7ca..90686cce 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='elementpath', - version='4.1.4', + version='4.1.5', packages=find_packages(include=['elementpath', 'elementpath.*']), package_data={ 'elementpath': ['py.typed'],