Skip to content

Commit 608bf72

Browse files
committed
[11.2] Prepare next release
Change-Id: I845c733f843ccddcf6fe4719ed26b219de3aa90e
1 parent 835a074 commit 608bf72

File tree

6 files changed

+25
-19
lines changed

6 files changed

+25
-19
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ repos:
6363
language: python
6464
require_serial: true
6565
- repo: https://github.com/astral-sh/ruff-pre-commit
66-
rev: v0.15.5
66+
rev: v0.15.6
6767
hooks:
6868
- id: ruff-check
6969
alias: ruff

HISTORY.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
Release History
22
===============
33

4+
11.1.0
5+
------
6+
*15 March 2026*
7+
8+
* Re-enable ``pwb`` site-package code entry point which was broken in Pywikibot 11 (:phab:`T420086`)
9+
* Add support for kaiwiki (:phab:`T414239`)
10+
* Add support for urwikisource (:phab:`T415976`)
11+
* Raise :exc:`NotImplementedError` instead of :exc:`AttributeError` if a
12+
:class:`Site<pywikibot.site._basesite.BaseSite>` method cannot be delegated to the corresponding
13+
:class:`Family<family.Family>` (:phab:`T417961`)
14+
* Use read throttle with :meth:`pywikibot.FilePage.download` per Wikitech robot policy for download (:phab:`T418672`)
15+
* Add *namespaces* parameter to :func:`pagegenerators.SubCategoriesPageGenerator` (:phab:`T417961`)
16+
* Fix nightly package version detection in :meth:`version.getversion_nightly`
17+
* Remove warning in :attr:`data.api.QueryGenerator.set_namespace` (:phab:`T196619`, :phab:`T198452`)
18+
* Prefer Pillow 12.1.1 or above due to security vulnerability (:phab:`T418046`)
19+
* Updated localization (L10N) files.
20+
21+
422
11.0.0
523
------
624
*09 February 2026*

ROADMAP.rst

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
Release 11.1
1+
Release 11.2
22
============
33

4-
* Re-enable ``pwb`` site-package code entry point which was broken in Pywikibot 11 (:phab:`T420086`)
5-
* Add support for kaiwiki (:phab:`T414239`)
6-
* Add support for urwikisource (:phab:`T415976`)
7-
* Raise :exc:`NotImplementedError` instead of :exc:`AttributeError` if a
8-
:class:`Site<pywikibot.site._basesite.BaseSite>` method cannot be delegated to the corresponding
9-
:class:`Family<family.Family>` (:phab:`T417961`)
10-
* Use read throttle with :meth:`pywikibot.FilePage.download` per Wikitech robot policy for download (:phab:`T418672`)
11-
* Add *namespaces* parameter to :func:`pagegenerators.SubCategoriesPageGenerator` (:phab:`T417961`)
12-
* Fix nightly package version detection in :meth:`version.getversion_nightly`
13-
* Remove warning in :attr:`data.api.QueryGenerator.set_namespace` (:phab:`T196619`, :phab:`T198452`)
14-
* Prefer Pillow 12.1.1 or above due to security vulnerability (:phab:`T418046`)
15-
* Updated localization (L10N) files.
16-
4+
* (no changes yet)
175

186
Deprecations
197
============

pywikibot/__metadata__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
from time import strftime
1313

1414

15-
__version__ = '11.1.0'
15+
__version__ = '11.2.0.dev0'
1616
__url__ = 'https://www.mediawiki.org/wiki/Manual:Pywikibot'
1717
__copyright__ = f'2003-{strftime("%Y")}, Pywikibot team'

scripts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
from pathlib import Path
3535

3636

37-
__version__ = '11.1.0'
37+
__version__ = '11.2.0'
3838

3939
#: defines the entry point for pywikibot-scripts package
4040
base_dir = Path(__file__).parent

scripts/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package-dir = {"pywikibot_scripts" = "scripts"}
77

88
[project]
99
name = "pywikibot-scripts"
10-
version = "11.0.0"
10+
version = "11.2.0"
1111

1212
authors = [
1313
{name = "xqt", email = "info@gno.de"},
@@ -19,7 +19,7 @@ description = "Pywikibot Scripts Collection"
1919
readme = "scripts/README.rst"
2020
requires-python = ">=3.9.0"
2121
dependencies = [
22-
"pywikibot >= 11.1.0",
22+
"pywikibot >= 11.2.0",
2323
"langdetect",
2424
"mwparserfromhell",
2525
"pydot",

0 commit comments

Comments
 (0)