jenkins-bot submitted this change.
[7.6] Prepare next release
Change-Id: I3dc32856dbf2f44fc47d361d1dcd1ff4832be69b
---
M .appveyor.yml
M HISTORY.rst
M ROADMAP.rst
M pywikibot/__metadata__.py
M scripts/__init__.py
5 files changed, 32 insertions(+), 24 deletions(-)
diff --git a/.appveyor.yml b/.appveyor.yml
index c970728..c11301c 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -1,7 +1,7 @@
image: Visual Studio 2019
clone_depth: 50
skip_tags: true
-version: 7.5.{build}
+version: 7.6.{build}
environment:
PYWIKIBOT_DIR: "%appdata%\\Pywikibot"
diff --git a/HISTORY.rst b/HISTORY.rst
index dfec894..3492ccf 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -1,6 +1,32 @@
Release history
^^^^^^^^^^^^^^^
+7.5.0
+-----
+*22 July 2022*
+
+* Add support for blkwiki (:phab:`T310875`)
+* L10N Updates
+* Fix duplicate source detection in :meth:`pywikibot.WikidataBot.user_add_claim_unless_exists`
+* :mod:`pywikibot.textlib`.tzoneFixedOffset class was renamed to :class:`pywikibot.time.TZoneFixedOffset`
+* Wrapper method :meth:`parsevalue()<pywikibot.site._datasite.DataSite.parsevalue>`
+ around wbparsevalue was added (:phab:`T112140`, :phab:`T312755`)
+* L10N updates
+* Fix cp encodings in :func:`get_charset_from_content_type()
+ <pywikibot.comms.http.get_charset_from_content_type>` (:phab:`T312230`)
+* New :mod:`pywikibot.time` module with new functions in addition to `Timestamp`
+* :meth:`Page.revisions()<pywikibot.page.BasePage.revisions>` supports more formats/types for
+ starttime and endtime parameters, in addition to those allowed by
+ :meth:`Timestamp.fromISOformat()<pywikibot.Timestamp.fromISOformat>`.
+* New :meth:`Timestamp.set_timestamp()<pywikibot.Timestamp.set_timestamp>` method
+* Fully ISO8601 and POSIX format support with :class:`pywikibot.Timestamp`;
+ formats are compliant with MediaWiki supported formats
+* Handle asynchronous page_put_queue after KeyboardInterrupt in Python 3.9+ (:phab:`T311076`)
+* No longer expect a specific namespace alias in cosmetic_changes
+ :meth:`translateAndCapitalizeNamespaces
+ <pywikibot.cosmetic_changes.CosmeticChangesToolkit.translateAndCapitalizeNamespaces>`
+
+
7.4.0
-----
*26 June 2022*
diff --git a/ROADMAP.rst b/ROADMAP.rst
index 405088a..4371e72 100644
--- a/ROADMAP.rst
+++ b/ROADMAP.rst
@@ -1,26 +1,8 @@
-Current release 7.5.0
+Current release 7.6.0
^^^^^^^^^^^^^^^^^^^^^
-* Add support for blkwiki (:phab:`T310875`)
-* L10N Updates
-* Fix duplicate source detection in :meth:`pywikibot.WikidataBot.user_add_claim_unless_exists`
-* :mod:`pywikibot.textlib`.tzoneFixedOffset class was renamed to :class:`pywikibot.time.TZoneFixedOffset`
-* Wrapper method :meth:`parsevalue()<pywikibot.site._datasite.DataSite.parsevalue>`
- around wbparsevalue was added (:phab:`T112140`, :phab:`T312755`)
-* L10N updates
-* Fix cp encodings in :func:`get_charset_from_content_type()
- <pywikibot.comms.http.get_charset_from_content_type>` (:phab:`T312230`)
-* New :mod:`pywikibot.time` module with new functions in addition to `Timestamp`
-* :meth:`Page.revisions()<pywikibot.page.BasePage.revisions>` supports more formats/types for
- starttime and endtime parameters, in addition to those allowed by
- :meth:`Timestamp.fromISOformat()<pywikibot.Timestamp.fromISOformat>`.
-* New :meth:`Timestamp.set_timestamp()<pywikibot.Timestamp.set_timestamp>` method
-* Fully ISO8601 and POSIX format support with :class:`pywikibot.Timestamp`;
- formats are compliant with MediaWiki supported formats
-* Handle asynchronous page_put_queue after KeyboardInterrupt in Python 3.9+ (:phab:`T311076`)
-* No longer expect a specific namespace alias in cosmetic_changes
- :meth:`translateAndCapitalizeNamespaces
- <pywikibot.cosmetic_changes.CosmeticChangesToolkit.translateAndCapitalizeNamespaces>`
+*(No changes yet)*
+
Deprecations
^^^^^^^^^^^^
diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py
index 0c0e1f8..5b9d1a1 100644
--- a/pywikibot/__metadata__.py
+++ b/pywikibot/__metadata__.py
@@ -11,7 +11,7 @@
__name__ = 'pywikibot'
-__version__ = '7.5.0'
+__version__ = '7.6.0.dev0'
__description__ = 'Python MediaWiki Bot Framework'
__maintainer__ = 'The Pywikibot team'
__maintainer_email__ = 'pywikibot@lists.wikimedia.org'
diff --git a/scripts/__init__.py b/scripts/__init__.py
index 3640623..4ee5ede 100644
--- a/scripts/__init__.py
+++ b/scripts/__init__.py
@@ -29,4 +29,4 @@
#
# Distributed under the terms of the MIT license.
#
-__version__ = '7.5.0'
+__version__ = '7.6.0'
To view, visit change 816103. To unsubscribe, or for help writing mail filters, visit settings.