jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1200382?usp=email )
Change subject: [11] Prepare next release 11 ......................................................................
[11] Prepare next release 11
Bug: T396368 Change-Id: Ie874af3b93e8266ec3872d362f6307e05ce2b0e6 --- M .pre-commit-config.yaml M HISTORY.rst M ROADMAP.rst M pywikibot/__metadata__.py M scripts/__init__.py M scripts/pyproject.toml 6 files changed, 34 insertions(+), 18 deletions(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a150f20..02bc045 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ - id: check-hooks-apply - id: check-useless-excludes - repo: https://gitlab.wikimedia.org/repos/ci-tools/commit-message-validator - rev: v2.1.0 + rev: v2.2.0 hooks: - id: commit-message-validator - repo: https://github.com/pre-commit/pre-commit-hooks @@ -65,7 +65,7 @@ language: python require_serial: true - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.1 + rev: v0.14.3 hooks: - id: ruff-check alias: ruff diff --git a/HISTORY.rst b/HISTORY.rst index 23feeed..ce530c7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,22 @@ Release History ===============
+10.7.0 +------ +*31 October 2025* + +* Add support for pcmwikiquote and minwikisource. (:phab:`T408345`, :phab:`T408353`) +* Deprecate dysfunctional :meth:`APISite.alllinks() + <pywikibot.site._generators.GeneratorsMixin.alllinks>`. (:phab:`T359427`, :phab:`T407708`) +* Refactor ``replace_magicwords`` in + :meth:`cosmetic_changes.CosmeticChangesToolkit.translateMagicWords`. (:phab:`T396715`) +* Deprecate old ``(type, value, traceback)`` signature in + :meth:`tools.collections.GeneratorWrapper.throw`. (:phab:`T340641`) +* Replace default timetravel.mementoweb.org with web.archive.org in :mod:`data.memento` module. + (:phab:`T400570`, :phab:`T407694`) +* i18n updates + + 10.6.0 ------ *23 October 2025* diff --git a/ROADMAP.rst b/ROADMAP.rst index 8e546d9..e746905 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,17 +1,17 @@ -Current Release Changes -======================= +Release 11 (in development) +===========================
-* Add support for pcmwikiquote and minwikisource. (:phab:`T408345`, :phab:`T408353`) -* Deprecate dysfunctional :meth:`APISite.alllinks() - <pywikibot.site._generators.GeneratorsMixin.alllinks>`. (:phab:`T359427`, :phab:`T407708`) -* Refactor ``replace_magicwords`` in - :meth:`cosmetic_changes.CosmeticChangesToolkit.translateMagicWords`. (:phab:`T396715`) -* Deprecate old ``(type, value, traceback)`` signature in - :meth:`tools.collections.GeneratorWrapper.throw`. (:phab:`T340641`) -* Replace default timetravel.mementoweb.org with web.archive.org in :mod:`data.memento` module. - (:phab:`T400570`, :phab:`T407694`) -* i18n updates +**Improvements** +* (no changes yet)
+**Bugfixes** +* (no changes yet) + +**Code cleanups** +* (no changes yet) + +**Other breaking changes** +* (no changes yet)
Deprecations ============ diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index 53458c1..d5b2d48 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -12,6 +12,6 @@ from time import strftime
-__version__ = '10.7.0' +__version__ = '11.0.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 b747241..3bc7555 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -34,7 +34,7 @@ from pathlib import Path
-__version__ = '10.7.0' +__version__ = '11.0.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 67f846a..842206b 100644 --- a/scripts/pyproject.toml +++ b/scripts/pyproject.toml @@ -7,7 +7,7 @@
[project] name = "pywikibot-scripts" -version = "10.7.0" +version = "11.0.0"
authors = [ {name = "xqt", email = "info@gno.de"}, @@ -19,7 +19,7 @@ readme = "scripts/README.rst" requires-python = ">=3.8.0" dependencies = [ - "pywikibot >= 10.5.0", + "pywikibot >= 11.0.0", "isbnlib", "langdetect", "mwparserfromhell",
pywikibot-commits@lists.wikimedia.org