jenkins-bot submitted this change.

View Change

Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
[6.1] Prepare next release 6.1

Change-Id: If0c4ad25bc37d86f574cc989713cac3e653e6be3
---
M .appveyor.yml
M HISTORY.rst
M ROADMAP.rst
M pywikibot/__metadata__.py
4 files changed, 62 insertions(+), 55 deletions(-)

diff --git a/.appveyor.yml b/.appveyor.yml
index 713badf..bb1b665 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,7 +1,7 @@
image: Visual Studio 2019
clone_depth: 50
skip_tags: true
-version: 6.0.{build}
+version: 6.1.{build}
environment:

PYWIKIBOT_DIR: "%appdata%\\Pywikibot"
diff --git a/HISTORY.rst b/HISTORY.rst
index 5402742..99edc5a 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,6 +1,65 @@
Release history
===============

+6.0.0
+-----
+*16 March 2021*
+
+Breaking changes
+~~~~~~~~~~~~~~~~
+
+* interwiki_graph module was removed (T223826)
+* Require setuptools >= 20.2 due to PEP 440
+* Support of MediaWiki < 1.23 has been dropped (T268979)
+* APISite.loadimageinfo will no longer return any content
+* Return requests.Response with http.request() instead of plain text (T265206)
+* config.db_hostname has been renamed to db_hostname_format
+
+Code cleanups
+~~~~~~~~~~~~~
+
+* tools.PY2 was removed (T213287)
+* Site.language() method was removed in favour of Site.lang property
+* Deprecated Page.getMovedTarget() method was removed in favour of moved_target()
+* Remove deprecated Wikibase.lastrevid attribute
+* config settings of archived scripts were removed (T223826)
+* Drop startsort/endsort parameter for site.categorymembers method (T74101)
+* Deprecated data attribute of http.fetch() result has been dropped (T265206)
+* toStdout parameter of pywikibot.output() has been dropped
+* Deprecated Site.getToken() and Site.case was removed
+* Deprecated Family.known_families dict was removed (T89451)
+* Deprecated DataSite.get_* methods was removed
+* Deprecated LogEntryFactory.logtypes classproperty was removed
+* Unused comms.threadedhttp module was removed; threadedhttp.HttpRequest was already replaced with requests.Response (T265206)
+
+Other changes
+~~~~~~~~~~~~~
+
+* Raise a SiteDefinitionError if api request response is Non-JSON and site is AutoFamily (T272911)
+* Support deleting and undeleting specific file versions (T276725)
+* Only add bot option generator if the bot class have it already
+* Raise a RuntimeError if pagegenerators -namespace option is provided too late (T276916)
+* Check for LookupError exception in http._decide_encoding (T276715)
+* Re-enable setting private family files (T270949)
+* Move the hardcoded namespace identifiers to an IntEnum
+* Buffer 'pageprops' in api.QueryGenerator
+* Ensure that BaseBot.generator is a Generator
+* Add additional info into log if 'messagecode' is missing during login (T261061, T269503)
+* Use hardcoded messages if i18n system is not available (T275981)
+* Move wikibase data structures to page/_collections.py
+* L10N updates
+* Add support for altwiki (T271984)
+* Add support for mniwiki and mniwiktionary (T273467, T273462)
+* Don't use mime parameter as boolean in api.Request (T274723)
+* textlib.removeDisabledPart is able to remove templates (T274138)
+* Create a SiteLink with __getitem__ method and implement lazy load (T273386, T245809, T238471, T226157)
+* Fix date.formats['MonthName'] behaviour (T273573)
+* Implement pagegenerators.handle_args() to process all options at once
+* Add enabled_options, disabled_options to GeneratorFactory (T271320)
+* Move interwiki() interwiki_prefix() and local_interwiki() methods from BaseSite to APISite
+* Add requests.Response.headers to log when an API error occurs (T272325)
+
+
5.6.0
-----
*24 January 2021*
diff --git a/ROADMAP.rst b/ROADMAP.rst
index 2fea4ec..1d132ec 100644
--- a/ROADMAP.rst
+++ b/ROADMAP.rst
@@ -1,59 +1,7 @@
Current release changes
~~~~~~~~~~~~~~~~~~~~~~~

-Breaking changes
-^^^^^^^^^^^^^^^^
-
-* interwiki_graph module was removed (T223826)
-* Require setuptools >= 20.2 due to PEP 440
-* Support of MediaWiki < 1.23 has been dropped (T268979)
-* APISite.loadimageinfo will no longer return any content
-* Return requests.Response with http.request() instead of plain text (T265206)
-* config.db_hostname has been renamed to db_hostname_format
-
-Code cleanups
-^^^^^^^^^^^^^
-
-* tools.PY2 was removed (T213287)
-* Site.language() method was removed in favour of Site.lang property
-* Deprecated Page.getMovedTarget() method was removed in favour of moved_target()
-* Remove deprecated Wikibase.lastrevid attribute
-* config settings of archived scripts were removed (T223826)
-* Drop startsort/endsort parameter for site.categorymembers method (T74101)
-* Deprecated data attribute of http.fetch() result has been dropped (T265206)
-* toStdout parameter of pywikibot.output() has been dropped
-* Deprecated Site.getToken() and Site.case was removed
-* Deprecated Family.known_families dict was removed (T89451)
-* Deprecated DataSite.get_* methods was removed
-* Deprecated LogEntryFactory.logtypes classproperty was removed
-* Unused comms.threadedhttp module was removed; threadedhttp.HttpRequest was already replaced with requests.Response (T265206)
-
-Other changes
-^^^^^^^^^^^^^
-
-* Raise a SiteDefinitionError if api request response is Non-JSON and site is AutoFamily (T272911)
-* Support deleting and undeleting specific file versions (T276725)
-* Only add bot option generator if the bot class have it already
-* Raise a RuntimeError if pagegenerators -namespace option is provided too late (T276916)
-* Check for LookupError exception in http._decide_encoding (T276715)
-* Re-enable setting private family files (T270949)
-* Move the hardcoded namespace identifiers to an IntEnum
-* Buffer 'pageprops' in api.QueryGenerator
-* Ensure that BaseBot.generator is a Generator
-* Add additional info into log if 'messagecode' is missing during login (T261061, T269503)
-* Use hardcoded messages if i18n system is not available (T275981)
-* Move wikibase data structures to page/_collections.py
-* L10N updates
-* Add support for altwiki (T271984)
-* Add support for mniwiki and mniwiktionary (T273467, T273462)
-* Don't use mime parameter as boolean in api.Request (T274723)
-* textlib.removeDisabledPart is able to remove templates (T274138)
-* Create a SiteLink with __getitem__ method and implement lazy load (T273386, T245809, T238471, T226157)
-* Fix date.formats['MonthName'] behaviour (T273573)
-* Implement pagegenerators.handle_args() to process all options at once
-* Add enabled_options, disabled_options to GeneratorFactory (T271320)
-* Move interwiki() interwiki_prefix() and local_interwiki() methods from BaseSite to APISite
-* Add requests.Response.headers to log when an API error occurs (T272325)
+* (no changes yet)

Future release notes
~~~~~~~~~~~~~~~~~~~~
diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py
index d059b39..9c335de 100644
--- a/pywikibot/__metadata__.py
+++ b/pywikibot/__metadata__.py
@@ -5,7 +5,7 @@
# Distributed under the terms of the MIT license.
#
__name__ = 'pywikibot'
-__version__ = '6.0.0'
+__version__ = '6.1.0.dev0'
__description__ = 'Python MediaWiki Bot Framework'
__maintainer__ = 'The Pywikibot team'
__maintainer_email__ = 'pywikibot@lists.wikimedia.org'

To view, visit change 672688. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: If0c4ad25bc37d86f574cc989713cac3e653e6be3
Gerrit-Change-Number: 672688
Gerrit-PatchSet: 2
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-Reviewer: jenkins-bot
Gerrit-MessageType: merged