jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1288241?usp=email )
Change subject: [11.4] Prepare next release ...................................................................... [11.4] Prepare next release Change-Id: I103a9ba895c107d0197fac1cb1be608ae19e2f7c --- M HISTORY.rst M ROADMAP.rst M dev-requirements.txt M pywikibot/__metadata__.py M scripts/__init__.py M scripts/pyproject.toml 6 files changed, 30 insertions(+), 23 deletions(-) Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved diff --git a/HISTORY.rst b/HISTORY.rst index f355067..4aaf228 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,30 @@ Release History =============== +11.3.0 +------ +*17 May 2026* + +* Add *until* parameter to :meth:`Site.allpages() + <pywikibot.site._generators.GeneratorsMixin.allpages>` and add ``-until`` option to + :ref:`Generator Options` as a stop title for enumeration (:phab:`T425882`) +* Update :attr:`family.WikimediaFamily.known_codes` (:phab:`T426319`) +* Move all :mod:`families.wikinews_family` site codes to :attr:`Family.closed_wikis + <families.wikinews_family.Family.closed_wikis>` (:phab:`T425953`, :phab:`T426022`) +* Enable :meth:`CosmeticChangesToolkit.commonsfiledesc() + <cosmetic_changes.CosmeticChangesToolkit.commonsfiledesc>` for FILE namespace on + on all commons wikis (:phab:`T425306`, :phab:`T425349`) +* Add Devanagari numerals for ne-wiki to :attr:`NON_ASCII_DIGITS + <userinterfaces.transliteration.NON_ASCII_DIGITS>` and fix :class:`textlib.TimeStripper` + regex for :attr:`textlib.TimeStripperPatterns.timezone` (:phab:`T424467`) +* Ignore ``UnicodeDecodeError`` in :meth:`cosmetic_changes.CosmeticChangesToolkit.cleanUpLinks` + and skip the link in such case (:phab:`T423062`) +* Update translations (i18n) +* If *preload* option is set in :meth:`pagegenerators.GeneratorFactory.getCombinedGenerator`, + the preloading generators :func:`pagegenerators.PreloadingGenerator` or + :func:`pagegenerators.DequePreloadingGenerator` are called with the *quiet* option. + + 11.2.0 ------ *18 April 2026* diff --git a/ROADMAP.rst b/ROADMAP.rst index 7bfff8e..d9e9dda 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,24 +1,7 @@ -Release 11.3 +Release 11.4 ============ -* Add *until* parameter to :meth:`Site.allpages() - <pywikibot.site._generators.GeneratorsMixin.allpages>` and add ``-until`` option to - :ref:`Generator Options` as a stop title for enumeration (:phab:`T425882`) -* Update :attr:`family.WikimediaFamily.known_codes` (:phab:`T426319`) -* Move all :mod:`families.wikinews_family` site codes to :attr:`Family.closed_wikis - <families.wikinews_family.Family.closed_wikis>` (:phab:`T425953`, :phab:`T426022`) -* Enable :meth:`CosmeticChangesToolkit.commonsfiledesc() - <cosmetic_changes.CosmeticChangesToolkit.commonsfiledesc>` for FILE namespace on - on all commons wikis (:phab:`T425306`, :phab:`T425349`) -* Add Devanagari numerals for ne-wiki to :attr:`NON_ASCII_DIGITS - <userinterfaces.transliteration.NON_ASCII_DIGITS>` and fix :class:`textlib.TimeStripper` - regex for :attr:`textlib.TimeStripperPatterns.timezone` (:phab:`T424467`) -* Ignore ``UnicodeDecodeError`` in :meth:`cosmetic_changes.CosmeticChangesToolkit.cleanUpLinks` - and skip the link in such case (:phab:`T423062`) -* Update translations (i18n) -* If *preload* option is set in :meth:`pagegenerators.GeneratorFactory.getCombinedGenerator`, - the preloading generators :func:`pagegenerators.PreloadingGenerator` or - :func:`pagegenerators.DequePreloadingGenerator` are called with the *quiet* option. +* *(no changes yet)* Deprecations diff --git a/dev-requirements.txt b/dev-requirements.txt index be2c0b1..463a9b5 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -6,7 +6,7 @@ pytest-xvfb>=3.1.1 pre-commit >= 4.6.0; python_version > "3.9" -coverage>=7.13.5; python_version > "3.9" +coverage>=7.14.0; python_version > "3.9" coverage==7.10.7; python_version == "3.9" # required for coverage (T380697) tomli>=2.4.1; python_version < "3.11" diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index ee85fbd..da6c8c7 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -12,6 +12,6 @@ from time import strftime -__version__ = '11.3.0' +__version__ = '11.4.0.dev0' __url__ = 'https://www.mediawiki.org/wiki/Manual:Pywikibot' __copyright__ = f'2003-{strftime("%Y")}, Pywikibot team' diff --git a/scripts/__init__.py b/scripts/__init__.py index 377671b..e32b699 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -34,7 +34,7 @@ from pathlib import Path -__version__ = '11.3.0' +__version__ = '11.4.0' #: defines the entry point for pywikibot-scripts package base_dir = Path(__file__).parent diff --git a/scripts/pyproject.toml b/scripts/pyproject.toml index da6bbeb..ee20ff3 100644 --- a/scripts/pyproject.toml +++ b/scripts/pyproject.toml @@ -19,7 +19,7 @@ readme = "scripts/README.rst" requires-python = ">=3.9.0" dependencies = [ - "pywikibot >= 11.3.0", + "pywikibot >= 11.4.0", "langdetect", "mwparserfromhell", "pydot", -- To view, visit https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1288241?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.wikimedia.org/r/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: pywikibot/core Gerrit-Branch: master Gerrit-Change-Id: I103a9ba895c107d0197fac1cb1be608ae19e2f7c Gerrit-Change-Number: 1288241 Gerrit-PatchSet: 1 Gerrit-Owner: Xqt <[email protected]> Gerrit-Reviewer: Xqt <[email protected]> Gerrit-Reviewer: jenkins-bot
_______________________________________________ Pywikibot-commits mailing list -- [email protected] To unsubscribe send an email to [email protected]
