jenkins-bot has submitted this change. (
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1275047?usp=email )
Change subject: [11.3] Prepare next release
......................................................................
[11.3] Prepare next release
Change-Id: I87547a1c357660ff7896deed17c0a4477c1c6aa9
---
M .pre-commit-config.yaml
M HISTORY.rst
M ROADMAP.rst
M pywikibot/__metadata__.py
M pywikibot/families/abstract_family.py
M scripts/__init__.py
M scripts/pyproject.toml
7 files changed, 32 insertions(+), 24 deletions(-)
Approvals:
Xqt: Looks good to me, approved
jenkins-bot: Verified
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 4860314..83d8cc9 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -63,7 +63,7 @@
language: python
require_serial: true
- repo: https://github.com/astral-sh/ruff-pre-commit
- rev: v0.15.9
+ rev: v0.15.11
hooks:
- id: ruff-check
alias: ruff
@@ -98,7 +98,7 @@
name: isort (skip future annotations)
files: ^pwb\.py$
- repo: https://github.com/jshwi/docsig
- rev: v0.82.0
+ rev: v0.83.0
hooks:
- id: docsig
exclude: ^(tests|scripts)
@@ -115,7 +115,7 @@
- flake8-print>=5.0.0
- pep8-naming>=0.15.1
- repo: https://github.com/pre-commit/mirrors-mypy
- rev: v1.20.0
+ rev: v1.20.1
hooks:
- id: mypy
args:
diff --git a/HISTORY.rst b/HISTORY.rst
index 721bea4..bd76a55 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,6 +1,24 @@
Release History
===============
+11.2.0
+------
+*18 April 2026*
+
+* Require Pillow 12.2.0 or above due to security vulnerability
+* Remove UTM tracking parameters in
:attr:`proofreadpage.ProofreadPage.url_image` (:phab:`T419943`)
+* Enable *total* parameter in
:meth:`Page.iterlanglinks()<page.BasePage.iterlanglinks>`
+ if links were cached (:phab:`T422390`)
+* Update translations (i18n)
+* Implement *deletetalk* option in
:meth:`APISite.delete()<pywikibot.site._apisite.APISite.delete>`
+ for older MediaWiki versions (:phab:`T420636`)
+* Add support for :mod:`abstract_family<families.abstract_family>`
+ (:phab:`T420636`, :phab:`T422369`)
+* Do not follow interwiki redirects in :meth:`APISite.pagebacklinks()
+ <pywikibot.site._generators.GeneratorsMixin.pagebacklinks>` (:phab:`T121833`)
+* Remove UTM tracking parameter in :meth:`pywikibot.FilePage.get_file_url`
(:phab:`T420827`)
+
+
11.1.0
------
*14 March 2026*
diff --git a/ROADMAP.rst b/ROADMAP.rst
index e14ee71..85bb6e9 100644
--- a/ROADMAP.rst
+++ b/ROADMAP.rst
@@ -1,18 +1,8 @@
-Release 11.2
+Release 11.3
============
-* Require Pillow 12.2.0 or above due to security vulnerability
-* Remove UTM tracking parameters in
:attr:`proofreadpage.ProofreadPage.url_image` (:phab:`T419943`)
-* Enable *total* parameter in
:meth:`Page.iterlanglinks()<page.BasePage.iterlanglinks>`
- if links were cached (:phab:`T422390`)
-* Update translations (i18n)
-* Implement *deletetalk* option in
:meth:`APISite.delete()<pywikibot.site._apisite.APISite.delete>`
- for older MediaWiki versions (:phab:`T420636`)
-* Add support for :mod:`abstract_family<families.abstract_family>`
- (:phab:`T420636`, :phab:`T422369`)
-* Do not follow interwiki redirects in :meth:`APISite.pagebacklinks()
- <pywikibot.site._generators.GeneratorsMixin.pagebacklinks>` (:phab:`T121833`)
-* Remove UTM tracking parameter in :meth:`pywikibot.FilePage.get_file_url`
(:phab:`T420827`)
+* (no changes yet)
+
Deprecations
============
diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py
index 289eb69..8c7bbd6 100644
--- a/pywikibot/__metadata__.py
+++ b/pywikibot/__metadata__.py
@@ -12,6 +12,6 @@
from time import strftime
-__version__ = '11.2.0'
+__version__ = '11.3.0.dev0'
__url__ = 'https://www.mediawiki.org/wiki/Manual:Pywikibot'
__copyright__ = f'2003-{strftime("%Y")}, Pywikibot team'
diff --git a/pywikibot/families/abstract_family.py
b/pywikibot/families/abstract_family.py
index c47328b..8ed01f7 100644
--- a/pywikibot/families/abstract_family.py
+++ b/pywikibot/families/abstract_family.py
@@ -1,12 +1,12 @@
-"""Family module for Abstract Wikipedia.
-
-.. version-added:: 11.2
-"""
#
# (C) Pywikibot team, 2026
#
# Distributed under the terms of the MIT license.
#
+"""Family module for Abstract Wikipedia.
+
+.. version-added:: 11.2
+"""
from __future__ import annotations
from pywikibot import family
diff --git a/scripts/__init__.py b/scripts/__init__.py
index 6c908ba..377671b 100644
--- a/scripts/__init__.py
+++ b/scripts/__init__.py
@@ -34,7 +34,7 @@
from pathlib import Path
-__version__ = '11.2.0'
+__version__ = '11.3.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 c15ea14..da6bbeb 100644
--- a/scripts/pyproject.toml
+++ b/scripts/pyproject.toml
@@ -7,7 +7,7 @@
[project]
name = "pywikibot-scripts"
-version = "11.2.0"
+version = "11.3.0"
authors = [
{name = "xqt", email = "[email protected]"},
@@ -19,7 +19,7 @@
readme = "scripts/README.rst"
requires-python = ">=3.9.0"
dependencies = [
- "pywikibot >= 11.2.0",
+ "pywikibot >= 11.3.0",
"langdetect",
"mwparserfromhell",
"pydot",
--
To view, visit
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1275047?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: I87547a1c357660ff7896deed17c0a4477c1c6aa9
Gerrit-Change-Number: 1275047
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]