diff --git a/CHANGELOG.md b/CHANGELOG.md index 169bd02c..5c527d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ## Changelog +## 1.9.4 +- maintenance: remove LXML version constraint (#184) + ## 1.9.3 - extraction: add heuristics (#173) - maintenance: explicitly support Python 3.13 (#172) diff --git a/htmldate/__init__.py b/htmldate/__init__.py index 7b6ee0c2..19678528 100644 --- a/htmldate/__init__.py +++ b/htmldate/__init__.py @@ -7,7 +7,7 @@ __author__ = "Adrien Barbaresi" __license__ = "Apache-2.0" __copyright__ = "Copyright 2017-present, Adrien Barbaresi" -__version__ = "1.9.3" +__version__ = "1.9.4" import logging diff --git a/pyproject.toml b/pyproject.toml index cfbef5f0..a6504ec6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ license = { text = "Apache 2.0" } dynamic = ["version"] requires-python = ">=3.8" authors = [ - {name = "Adrien Barbaresi", email = "barbaresi@bbaw.de"} + {name = "Adrien Barbaresi", email = "adrien.barbaresi@gmail.com"} ] keywords=[ "datetime", @@ -43,6 +43,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Internet :: WWW/HTTP", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Text Processing :: Linguistic",