jenkins-bot has submitted this change. ( https://gerrit.wikimedia.org/r/c/pywikibot/core/+/942411 )
Change subject: [8.4] Prepare next release ......................................................................
[8.4] Prepare next release
Change-Id: Iac12051b1c4d1b61cfe5d01cf7d2d8710b677b2f --- M .appveyor.yml M ROADMAP.rst M pywikibot/__metadata__.py M HISTORY.rst M scripts/__init__.py 5 files changed, 26 insertions(+), 11 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/.appveyor.yml b/.appveyor.yml index dc65320..7116a1c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,7 +1,7 @@ image: Visual Studio 2022 clone_depth: 50 skip_tags: true -version: 8.3.{build} +version: 8.4.{build} environment:
PYWIKIBOT_DIR: "%appdata%\Pywikibot" @@ -60,8 +60,8 @@ # Download Python 3.6.1 which isn't pre-installed - ps: ./appveyor_install.ps1 - python --version - - python -c "import platform, sys; print(platform.machine(), '|', sys.version)" - - python -c "import struct; print('PYTHON_ARCH' + chr(58), struct.calcsize('P') << 3)" + - python -c "import platform; print(platform.machine())" + - python -c "import struct; print('PYTHON_ARCH:', struct.calcsize('P') << 3)" - pip --version - pip install -r requirements.txt - pip install -r dev-requirements.txt diff --git a/HISTORY.rst b/HISTORY.rst index 6dd9ca5..831d538 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,17 @@ Release history ===============
+8.3.0 +----- +*27 July 2023* + +* Add support for btmwiktionary (:phab:`T336117`) +* Add 'yue'/'zh-yue' code_aliases to family files (:phab:`T341960`) +* All wbtypes are placed in ``pywkibot._wbtypes`` module +* Use ``site.lang`` instead of ``site.code`` in :func:`comms.http.user_agent` (:phab:`T228322`) +* Make header extraction in :func:`textlib.extract_sections` more robust (:phab:`T341787`) +* + 8.2.0 ----- *05 July 2023* diff --git a/ROADMAP.rst b/ROADMAP.rst index a1acaa7..cf0a992 100644 --- a/ROADMAP.rst +++ b/ROADMAP.rst @@ -1,12 +1,7 @@ Current release ---------------
-* Add support for btmwiktionary (:phab:`T336117`) -* Add 'yue'/'zh-yue' code_aliases to family files (:phab:`T341960`) -* All wbtypes are placed in ``pywkibot._wbtypes`` module -* Use ``site.lang`` instead of ``site.code`` in :func:`comms.http.user_agent` (:phab:`T228322`) -* Make header extraction in :func:`textlib.extract_sections` more robust (:phab:`T341787`) - +* *(No changes yet*)
Deprecations ------------ diff --git a/pywikibot/__metadata__.py b/pywikibot/__metadata__.py index 6d7d27f..31fb93a 100644 --- a/pywikibot/__metadata__.py +++ b/pywikibot/__metadata__.py @@ -11,7 +11,7 @@
__name__ = 'pywikibot' -__version__ = '8.3.0' +__version__ = '8.4.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 aa4c723..f110a78 100644 --- a/scripts/__init__.py +++ b/scripts/__init__.py @@ -29,4 +29,4 @@ # # Distributed under the terms of the MIT license. # -__version__ = '8.3.0' +__version__ = '8.4.0'
pywikibot-commits@lists.wikimedia.org