Skip to content

Commit

Permalink
Advertise support for qBittorrent v4.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Aug 25, 2022
1 parent 292d087 commit e92b556
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ env:
# All python versions except latest
PYTHON_VERSIONS: '[ "3.9", "3.8", "3.7", "3.6", "3.5", "2.7", "pypy3.8", "pypy3.7", "pypy2.7", "3.11-dev" ]'
# keep in sync with hardcoded refs below
LATEST_QBT_VER: "4.4.3.1"
LATEST_QBT_VER: "4.4.4"
# All qBittorrent versions except latest
QBT_VERS: '[ "4.4.1", "4.4.0", "4.3.9", "4.3.8", "4.3.7", "4.3.6", "4.3.5", "4.3.4.1", "4.3.3", "4.3.2", "4.3.1", "4.3.0.1" ]'
QBT_VERS: '[ "4.4.4", "4.4.0", "4.3.9", "4.3.8", "4.3.7", "4.3.6", "4.3.5", "4.3.4.1", "4.3.3", "4.3.2", "4.3.1", "4.3.0.1" ]'
QBT_LEGACY_VERS: '[ "4.2.5", "4.2.0", "4.1.6", "4.1.0" ]'
QT_USE_DEFAULT_PAA: "4.3.9, 4.3.8, 4.3.7, 4.3.6, 4.3.5, 4.3.4.1, 4.3.3, 4.3.2, 4.3.1, 4.3.0.1"
LIBTORRENT_VER: "2.0.7"
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
#######
# Run tests against latest qBittorrent release and latest Python release
#######
name: "Release Test 3.10 - v4.4.3.1"
name: "Release Test 3.10 - v4.4.4"
needs: verify
runs-on: ubuntu-latest
timeout-minutes: 10
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
#######
# Run tests against latest qBittorrent release and all Python releases
#######
name: "Release Test ${{ matrix.python-version }} - v4.4.3.1"
name: "Release Test ${{ matrix.python-version }} - v4.4.4"
needs: [tests-smoke, verify]
runs-on: ubuntu-latest
continue-on-error: true
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 2022.8.37 (24 aug 2022)
- Advertise support for qBittorrent v4.4.4

Version 2022.8.36 (15 aug 2022)
- Comply with enforced HTTP method requirements from qBittorrent

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ qBittorrent Web API Client

Python client implementation for qBittorrent Web API.

Currently supports qBittorrent [v4.4.3.1](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.4.3.1) (Web API v2.8.5) released on May 24, 2022.
Currently supports qBittorrent [v4.4.4](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.4.4) (Web API v2.8.5) released on Aug 22, 2022.

User Guide and API Reference available on [Read the Docs](https://qbittorrent-api.readthedocs.io/).

Expand Down
2 changes: 1 addition & 1 deletion docs/source/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Introduction

Python client implementation for qBittorrent Web API.

Currently supports qBittorrent `v4.4.3.1 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.4.3.1>`_ (Web API v2.8.5) released on May 24, 2022.
Currently supports qBittorrent `v4.4.4 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.4.4>`_ (Web API v2.8.5) released on Aug 22, 2022.

Features
------------
Expand Down
3 changes: 2 additions & 1 deletion qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@
"v4.4.2": "2.8.5",
"v4.4.3": "2.8.5",
"v4.4.3.1": "2.8.5",
"v4.4.4": "2.8.5",
}

MOST_RECENT_SUPPORTED_APP_VERSION = "v4.4.3.1"
MOST_RECENT_SUPPORTED_APP_VERSION = "v4.4.4"
MOST_RECENT_SUPPORTED_API_VERSION = "2.8.5"


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = qbittorrent-api
version = 2022.8.36
version = 2022.8.37
url = https://github.com/rmartin16/qbittorrent-api
author = Russell Martin
author_email = rmartin16@gmail.com
Expand Down

0 comments on commit e92b556

Please sign in to comment.