Skip to content

Commit

Permalink
Advertise support for v4.6.6 and v5.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Aug 20, 2024
1 parent c2d3ad1 commit 6db452c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:

env:
LATEST_PYTHON_VER: 3.12
LATEST_QBT_VER: v4.6.5
LATEST_QBT_VER: v4.6.6
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
strategy:
matrix:
QBT_VER:
- v5.0.0beta1
- v5.0.0rc1
- v4.4.4
- v4.3.9
- v4.3.5
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Python client implementation for qBittorrent Web API

</div>

Currently supports qBittorrent [v4.6.5](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.5) (Web API v2.9.3) released on May 26, 2024.
Currently supports qBittorrent [v4.6.6](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.6) (Web API v2.9.3) released on Aug 18, 2024.

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 @@ -19,7 +19,7 @@ Introduction

Python client implementation for qBittorrent Web API.

Currently supports qBittorrent `v4.6.5 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.5>`_ (Web API v2.9.3) released on May 26, 2024.
Currently supports qBittorrent `v4.6.6 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.6>`_ (Web API v2.9.3) released on Aug 18, 2024.

Features
------------
Expand Down
4 changes: 3 additions & 1 deletion src/qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,11 @@
"v5.0.0beta1": "2.10.4",
"v4.6.4": "2.9.3",
"v4.6.5": "2.9.3",
"v5.0.0rc1": "2.11.2",
"v4.6.6": "2.9.3",
}

MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.5"]] = "v4.6.5"
MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.6"]] = "v4.6.6"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.3"]] = "2.9.3"


Expand Down

0 comments on commit 6db452c

Please sign in to comment.