jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1084725?usp=email )
Change subject: [9.6] Prepare next release ......................................................................
[9.6] Prepare next release
Change-Id: I31f5e1dd3b64165a39cbc6f51a858f56e15706bb --- M HISTORY.rst M ROADMAP.rst M pywikibot/__metadata__.py M scripts/__init__.py M scripts/pyproject.toml 5 files changed, 19 insertions(+), 12 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/HISTORY.rst b/HISTORY.rst index 8278f99..79ec950 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,20 @@ Release History ===============
+9.5.0 +----- + +* Add support for tcywikisource and tcywiktionary (:phab:`T378473`, :phab:`T378465`) +* i18n-updates +* Update invisible chars in :mod:`tools.chars` from unicode 16.0.0 +* Rename :meth:`DataSite.getPropertyType()<pywikibot.site._datasite.DataSite.getPropertyType>` + to :meth:`DataSite.get_property_type()<pywikibot.site._datasite.DataSite.get_property_type>` +* provide XXXI with :func:`date.romanNumToInt` and :func:`date.intToRomanNum` functions +* No longer raise :exc:`exceptions.UnsupportedPageError` within :meth:`data.api.PageGenerator.result` (:phab:`T377651`) +* Extract messages with strong tag from xtools as error message in + :meth:`Page.authorship()<page._toolforge.WikiBlameMixin.authorship>` (:phab:`T376815`) + + 9.4.1 ----- *15 October 2024* diff --git a/ROADMAP.rst b/ROADMAP.rst index cd3def1..d420632 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,15 +1,8 @@ Current Release Changes =======================
-* Add support for tcywikisource and tcywiktionary (:phab:`T378473`, :phab:`T378465`) -* i18n-updates -* Update invisible chars in :mod:`tools.chars` from unicode 16.0.0 -* Rename :meth:`DataSite.getPropertyType()<pywikibot.site._datasite.DataSite.getPropertyType>` - to :meth:`DataSite.get_property_type()<pywikibot.site._datasite.DataSite.get_property_type>` -* provide XXXI with :func:`date.romanNumToInt` and :func:`date.intToRomanNum` functions -* No longer raise :exc:`exceptions.UnsupportedPageError` within :meth:`data.api.PageGenerator.result` (:phab:`T377651`) -* Extract messages with strong tag from xtools as error message in - :meth:`Page.authorship()<page._toolforge.WikiBlameMixin.authorship>` (:phab:`T376815`) +* (no changes yet) +
Current Deprecations ==================== diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index d067c1c..607d2da 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -12,6 +12,6 @@ from time import strftime
-__version__ = '9.5.0' +__version__ = '9.6.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 109f604..96c14f7 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -34,7 +34,7 @@ from pathlib import Path
-__version__ = '9.5.0' +__version__ = '9.6.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 0db8540..51c254d 100644 --- a/scripts/pyproject.toml +++ b/scripts/pyproject.toml @@ -7,7 +7,7 @@
[project] name = "pywikibot-scripts" -version = "9.5.0" +version = "9.6.0"
authors = [ {name = "xqt", email = "info@gno.de"},
pywikibot-commits@lists.wikimedia.org