jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/786956 )
Change subject: [7.3] Prepare next release 7.3 ......................................................................
[7.3] Prepare next release 7.3
Change-Id: Ibf7f64dd888da1bc6ac736fa2a877a11cbbe8b60 --- M .appveyor.yml M HISTORY.rst M ROADMAP.rst M pywikibot/__metadata__.py M scripts/CHANGELOG.md M scripts/__init__.py 6 files changed, 48 insertions(+), 37 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/.appveyor.yml b/.appveyor.yml index e0d352f..13593b4 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,7 @@ image: Visual Studio 2019 clone_depth: 50 skip_tags: true -version: 7.2.{build} +version: 7.3.{build} environment:
PYWIKIBOT_DIR: "%appdata%\Pywikibot" diff --git a/HISTORY.rst b/HISTORY.rst index 528515c..b66d94e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,44 @@ Release history ^^^^^^^^^^^^^^^
+7.2.0 +----- +*26 April 2022* + +* Make logging system consistent, add pywikibot.info() alias for pywikibot.output() (:phab:`T85620`) +* L10N updates +* Circumvent circular import in tools module (:phab:`T306760`) +* Don't fix html inside syntaxhighlight parts in fixes.py (:phab:`T306723`) +* Make layer parameter optional in `pywikibot.debug()` (:phab:`T85620`) +* Retry for internal_api_error_DBQueryTimeoutError errors due to :phab:`T297708` +* Handle ParserError within xmlreader.XmlDump.parse() instead of raising an exception (:phab:`T306134`) +* XMLDumpOldPageGenerator is deprecated in favour of a `content` parameter (:phab:`T306134`) +* `use_disambig` BaseBot attribute was added to hande disambig skipping +* Deprecate RedirectPageBot and NoRedirectPageBot in favour of `use_redirects` attribute +* tools.formatter.color_format is deprecated and will be removed +* A new and easier color format was implemented; colors can be used like: + ``'this is a <<green>>colored<<default>> text'`` +* Unused and unsupported `xmlreader.XmlParserThread` was removed +* Use upercased IP user titles (:phab:`T306291`) +* Use pathlib to extract filename and file_package in pwb.py +* Fix isbn messages in fixes.py (:phab:`T306166`) +* Fix Page.revisions() with starttime (:phab:`T109181`) +* Use stream_output for messages inside input_list_choice method (:phab:`T305940`) +* Expand simulate query result (:phab:`T305918`) +* Do not delete text when updating a Revision (:phab:`T304786`) +* Re-enable scripts package version check with pwb wrapper (:phab:`T305799`) +* Provide textlib.ignore_case() as a public method +* Don't try to upcast timestamp from global userinfo if global account does not exists (:phab:`T305351`) +* Archived scripts were removed; create a Phabricator task to restore some (:phab:`T223826`) +* Add Lexeme support for Lexicographical data (:phab:`T189321`, :phab:`T305297`) +* enable all parameters of `APISite.imageusage()` with `FilePage.usingPages()` +* Don't raise `NoPageError` with `file_is_shared` (:phab:`T305182`) +* Fix URL of GoogleOCR +* Handle ratelimit with purgepages() (:phab:`T152597`) +* Add movesubpages parameter to Page.move() and APISite.movepage() (:phab:`T57084`) +* Do not iterate over sys.modules (:phab:`T304785`) + + 7.1.0 ----- *26 March 2022* diff --git a/ROADMAP.rst b/ROADMAP.rst index 89c0ac3..569d2f4 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,38 +1,7 @@ -Current release 7.2.0 +Current release 7.3.0 ^^^^^^^^^^^^^^^^^^^^^
-* Make logging system consistent, add pywikibot.info() alias for pywikibot.output() (:phab:`T85620`) -* L10N updates -* Circumvent circular import in tools module (:phab:`T306760`) -* Don't fix html inside syntaxhighlight parts in fixes.py (:phab:`T306723`) -* Make layer parameter optional in `pywikibot.debug()` (:phab:`T85620`) -* Retry for internal_api_error_DBQueryTimeoutError errors due to :phab:`T297708` -* Handle ParserError within xmlreader.XmlDump.parse() instead of raising an exception (:phab:`T306134`) -* XMLDumpOldPageGenerator is deprecated in favour of a `content` parameter (:phab:`T306134`) -* `use_disambig` BaseBot attribute was added to hande disambig skipping -* Deprecate RedirectPageBot and NoRedirectPageBot in favour of `use_redirects` attribute -* tools.formatter.color_format is deprecated and will be removed -* A new and easier color format was implemented; colors can be used like: - ``'this is a <<green>>colored<<default>> text'`` -* Unused and unsupported `xmlreader.XmlParserThread` was removed -* Use upercased IP user titles (:phab:`T306291`) -* Use pathlib to extract filename and file_package in pwb.py -* Fix isbn messages in fixes.py (:phab:`T306166`) -* Fix Page.revisions() with starttime (:phab:`T109181`) -* Use stream_output for messages inside input_list_choice method (:phab:`T305940`) -* Expand simulate query result (:phab:`T305918`) -* Do not delete text when updating a Revision (:phab:`T304786`) -* Re-enable scripts package version check with pwb wrapper (:phab:`T305799`) -* Provide textlib.ignore_case() as a public method -* Don't try to upcast timestamp from global userinfo if global account does not exists (:phab:`T305351`) -* Archived scripts were removed; create a Phabricator task to restore some (:phab:`T223826`) -* Add Lexeme support for Lexicographical data (:phab:`T189321`, :phab:`T305297`) -* enable all parameters of `APISite.imageusage()` with `FilePage.usingPages()` -* Don't raise `NoPageError` with `file_is_shared` (:phab:`T305182`) -* Fix URL of GoogleOCR -* Handle ratelimit with purgepages() (:phab:`T152597`) -* Add movesubpages parameter to Page.move() and APISite.movepage() (:phab:`T57084`) -* Do not iterate over sys.modules (:phab:`T304785`) +* *(no changes yet)*
Deprecations diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index a4fffeb..545603e 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -11,7 +11,7 @@
__name__ = 'pywikibot' -__version__ = '7.2.0' +__version__ = '7.3.0.dev0' __description__ = 'Python MediaWiki Bot Framework' __maintainer__ = 'The Pywikibot team' __maintainer_email__ = 'pywikibot@lists.wikimedia.org' diff --git a/scripts/CHANGELOG.md b/scripts/CHANGELOG.md index a89eb6d..55eaff8 100644 --- a/scripts/CHANGELOG.md +++ b/scripts/CHANGELOG.md @@ -1,8 +1,12 @@ # Scripts Changelog
-## 7.2.0 +## 7.3.0 *In development*
+ +## 7.2.0 +*26 April 2022* + ### general * Archived scripts were removed
diff --git a/scripts/__init__.py b/scripts/__init__.py index 92c0935..41f6eb7 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -29,4 +29,4 @@ # # Distributed under the terms of the MIT license. # -__version__ = '7.2.0' +__version__ = '7.3.0'
pywikibot-commits@lists.wikimedia.org