jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1026709?usp=email )
Change subject: [9.2] Restore Pywikibot 9.2 for further developing ......................................................................
[9.2] Restore Pywikibot 9.2 for further developing
Change-Id: I6e1895685ae917095539f1a7efe93ab2130fbbd3 --- M .appveyor.yml M HISTORY.rst M ROADMAP.rst M pywikibot/__metadata__.py M scripts/__init__.py 5 files changed, 13 insertions(+), 6 deletions(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/.appveyor.yml b/.appveyor.yml index 6fb8acf..96d787b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,7 @@ image: Visual Studio 2022 clone_depth: 50 skip_tags: true -version: 9.1.{build} +version: 9.2.{build} environment:
PYWIKIBOT_DIR: "%appdata%\Pywikibot" diff --git a/HISTORY.rst b/HISTORY.rst index 3415a6d..fc240b8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,15 @@ Release history ===============
+9.1.2 +----- +*03 May 2024* + +* Remove line endings in :func:`version.getversion_nightly` (:phab:`T363943`) +* Provide ``-nouser`` option with :mod:`pywikibot.scripts.version` +* i18n updates + + 9.1.1 ----- *27 April 2024* diff --git a/ROADMAP.rst b/ROADMAP.rst index 80c71e0..19cb97f 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,9 +1,7 @@ Current release ---------------
-* Remove line endings in :func:`version.getversion_nightly` (:phab:`T363943`) -* Provide ``-nouser`` option with :mod:`pywikibot.scripts.version` -* i18n updates +* (no changes yet)
Deprecations ------------ diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index a4b4218..362e90a 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -12,6 +12,6 @@ from time import strftime
-__version__ = '9.1.2' +__version__ = '9.2.0.dev2' __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 13b4564..01864c7 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -32,4 +32,4 @@ # # Distributed under the terms of the MIT license. # -__version__ = '9.1.2' +__version__ = '9.2.0'
pywikibot-commits@lists.wikimedia.org