Xqt has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/647604 )
Change subject: [5.2.1] Update Pywikibot version ......................................................................
[5.2.1] Update Pywikibot version
- Update Pywikibot version to 5.2.1.dev0 development release - upate ROADMAP.rst and HISTORY.rst files
Change-Id: I53c733c2326da50b54596d068f4dbd2137babe62 --- M HISTORY.rst M ROADMAP.rst M pywikibot/__metadata__.py 3 files changed, 43 insertions(+), 37 deletions(-)
Approvals: jenkins-bot: Verified Xqt: Looks good to me, approved
diff --git a/HISTORY.rst b/HISTORY.rst index 21cc668..c182e68 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,47 @@ Release history ===============
+5.2.0 +----- +*10 December 2020* + +* Remove deprecated args for Page.protect() (T227610) +* Move BaseSite its own site/_basesite.py file +* Improve toJSON() methods in page.__init__.py +* _is_wikibase_error_retryable rewritten (T48535, 268645) +* Replace FrozenDict with frozenmap +* WikiStats table may be sorted by any key +* Retrieve month names from mediawiki_messages when required +* Move Namespace and NamespacesDict to site/_namespace.py file +* Fix TypeError in api.LoginManager (T268445) +* Add repr() method to BaseDataDict and ClaimCollection +* Define availableOptions as deprecated property +* Do not strip all whitespaces from Link.title (T197642) +* Introduce a common BaseDataDict as parent for LanguageDict and AliasesDict +* Replaced PageNotSaved by PageSaveRelatedError (T267821) +* Add -site option as -family -lang shortcut +* Enable APISite.exturlusage() with default parameters (T266989) +* Update tools._unidata._category_cf from Unicode version 13.0.0 +* Move TokenWallet to site/_tokenwallet.py file +* Fix import of httplib after release of requests 2.25 (T267762) +* user keyword parameter can be passed to Site.rollbackpage() (T106646) +* Check for {{bots}}/{{nobots}} templates in Page.text setter (T262136, T267770) +* Remove deprecated UserBlocked exception and Page.contributingUsers() +* Add support for some 'wbset' actions in DataSite +* Fix UploadRobot site attribute (T267573) +* Ignore UnicodeDecodeError on input (T258143) +* Replace 'source' exception regex with 'syntaxhighlight' (T257899) +* Fix get_known_families() for wikipedia_family (T267196) +* Move _InterwikiMap class to site/_interwikimap.py +* instantiate a CosmeticChangesToolkit by passing a page +* Create a Site from sitename +* pywikibot.Site() parameters "interface" and "url" must be keyworded +* Lookup the code parameter in xdict first (T255917) +* Remove interwiki_forwarded_from list from family files (T104125) +* Rewrite Revision class; each data can be accessed either by key or as an attribute (T102735, T259428) +* L10N-Updates + + 5.1.0 -----
diff --git a/ROADMAP.rst b/ROADMAP.rst index f11b7d9..590a2d0 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,42 +1,7 @@ Current release changes ~~~~~~~~~~~~~~~~~~~~~~~
-* Remove deprecated args for Page.protect() (T227610) -* Move BaseSite its own site/_basesite.py file -* Improve toJSON() methods in page.__init__.py -* _is_wikibase_error_retryable rewritten (T48535, 268645) -* Replace FrozenDict with frozenmap -* WikiStats table may be sorted by any key -* Retrieve month names from mediawiki_messages when required -* Move Namespace and NamespacesDict to site/_namespace.py file -* Fix TypeError in api.LoginManager (T268445) -* Add repr() method to BaseDataDict and ClaimCollection -* Define availableOptions as deprecated property -* Do not strip all whitespaces from Link.title (T197642) -* Introduce a common BaseDataDict as parent for LanguageDict and AliasesDict -* Replaced PageNotSaved by PageSaveRelatedError (T267821) -* Add -site option as -family -lang shortcut -* Enable APISite.exturlusage() with default parameters (T266989) -* Update tools._unidata._category_cf from Unicode version 13.0.0 -* Move TokenWallet to site/_tokenwallet.py file -* Fix import of httplib after release of requests 2.25 (T267762) -* user keyword parameter can be passed to Site.rollbackpage() (T106646) -* Check for {{bots}}/{{nobots}} templates in Page.text setter (T262136, T267770) -* Remove deprecated UserBlocked exception and Page.contributingUsers() -* Add support for some 'wbset' actions in DataSite -* Fix UploadRobot site attribute (T267573) -* Ignore UnicodeDecodeError on input (T258143) -* Replace 'source' exception regex with 'syntaxhighlight' (T257899) -* Fix get_known_families() for wikipedia_family (T267196) -* Move _InterwikiMap class to site/_interwikimap.py -* instantiate a CosmeticChangesToolkit by passing a page -* Create a Site from sitename -* pywikibot.Site() parameters "interface" and "url" must be keyworded -* Lookup the code parameter in xdict first (T255917) -* Remove interwiki_forwarded_from list from family files (T104125) -* Rewrite Revision class; each data can be accessed either by key or as an attribute (T102735, T259428) -* L10N-Updates - +* (no changes yet)
Future release notes ~~~~~~~~~~~~~~~~~~~~ diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index 4eb6448..b05fe6e 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -6,7 +6,7 @@ # Distributed under the terms of the MIT license. # __name__ = 'pywikibot' -__version__ = '5.2.0' +__version__ = '5.2.1.dev0' __description__ = 'Python MediaWiki Bot Framework' __maintainer__ = 'The Pywikibot team' __maintainer_email__ = 'pywikibot@lists.wikimedia.org'
pywikibot-commits@lists.wikimedia.org