diff --git a/ROADMAP.rst b/ROADMAP.rst index c2fb21e321..5a13e72192 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,7 +1,8 @@ Current Release Changes ======================= -* (no changes yet) +* Add support for bdrwiki (:phab:`T371762`) +* i18n updates Current Deprecations ==================== diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index e63d18ed1a..e60e7a9127 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -12,6 +12,6 @@ from time import strftime -__version__ = '9.4.0.dev0' +__version__ = '9.3.1' __url__ = 'https://www.mediawiki.org/wiki/Manual:Pywikibot' __copyright__ = f'2003-{strftime("%Y")}, Pywikibot team' diff --git a/scripts/CHANGELOG.rst b/scripts/CHANGELOG.rst index b207ef7155..21852ca567 100644 --- a/scripts/CHANGELOG.rst +++ b/scripts/CHANGELOG.rst @@ -1,13 +1,22 @@ Scripts Changelog ================= +9.3.1 +----- + +reflinks +^^^^^^^^ + +* Ignore LookupError when decoding meta content (:phab:`T371687`) + + 9.3.0 ----- delinker ^^^^^^^^ -* Ignore file extension check :phab:`T352237`) +* Ignore file extension check (:phab:`T352237`) fixing_redirects ^^^^^^^^^^^^^^^^ diff --git a/scripts/__init__.py b/scripts/__init__.py index 67c172fbb3..58c67230c5 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -32,4 +32,4 @@ from __future__ import annotations -__version__ = '9.4.0' +__version__ = '9.3.1'