From 85cd3d8aa1d349e931bdb247fc041c67f1a66f2b Mon Sep 17 00:00:00 2001 From: Adrien Barbaresi Date: Mon, 8 Jan 2024 15:28:02 +0100 Subject: [PATCH] prepare v1.6.4 (#468) --- HISTORY.md | 15 +++++++++++++++ docs/conf.py | 2 +- docs/requirements.txt | 2 +- trafilatura/__init__.py | 4 ++-- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 7d274c3a..a8005e3f 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,21 @@ ## History / Changelog +### 1.6.4 + +Maintenance: +- MacOS: fix setup, update htmldate and add tests (#460) +- drop invalid XML element attributes with @vbarbaresi in #462 +- remove cyclic imports (#458) + +Navigation: +- introduce `MAX_REDIRECTS` config setting and fix urllib3 redirect handling by @vbarbaresi in #461 +- improve feed detection (#457) + +Documentation: +- enhancements to documentation and testing with @Maddesea in #456 + + ### 1.6.3 Extraction: diff --git a/docs/conf.py b/docs/conf.py index 33c98402..dc3cfe19 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ # -- Project information ----------------------------------------------------- project = 'trafilatura' -copyright = '2023, Adrien Barbaresi' +copyright = '2024, Adrien Barbaresi' html_show_sphinx = False author = 'Adrien Barbaresi' version = trafilatura.__version__ diff --git a/docs/requirements.txt b/docs/requirements.txt index 41487bbe..42b4d409 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,6 +1,6 @@ # with version specifier sphinx>=7.2.6 -pydata-sphinx-theme>=0.14.4 +pydata-sphinx-theme>=0.15.1 docutils>=0.20.1 # without version specifier trafilatura diff --git a/trafilatura/__init__.py b/trafilatura/__init__.py index 113d6ce5..774f10f5 100644 --- a/trafilatura/__init__.py +++ b/trafilatura/__init__.py @@ -8,8 +8,8 @@ __title__ = 'trafilatura' __author__ = 'Adrien Barbaresi and contributors' __license__ = 'GNU GPL v3+' -__copyright__ = 'Copyright 2019-2023, Adrien Barbaresi' -__version__ = '1.6.3' +__copyright__ = 'Copyright 2019-2024, Adrien Barbaresi' +__version__ = '1.6.4' import logging