From d9d51e372e46d73f3199e777f41be76d153299ed Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Mon, 30 Sep 2024 10:09:40 -0400 Subject: [PATCH] Advertise support for qBittorrent v5.0.0 --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- docs/source/introduction.rst | 2 +- src/qbittorrentapi/_version_support.py | 7 ++++--- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cf0dfb8b..4db19ba77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ concurrency: env: LATEST_PYTHON_VER: 3.12 - LATEST_QBT_VER: v4.6.7 + LATEST_QBT_VER: v5.0.0 QBITTORRENTAPI_HOST: localhost:8080 QBITTORRENTAPI_USERNAME: admin QBITTORRENTAPI_PASSWORD: adminadmin @@ -93,7 +93,7 @@ jobs: strategy: matrix: QBT_VER: - - v5.0.0rc1 + - v4.6.7 - v4.4.4 - v4.3.9 - v4.3.5 diff --git a/README.md b/README.md index 9ad2ada4a..87106e0dc 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Python client implementation for qBittorrent Web API -Currently supports qBittorrent [v4.6.7](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.7) (Web API v2.9.3) released on Sept 16, 2024. +Currently supports qBittorrent [v5.0.0](https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.0) (Web API v2.11.2) released on Sept 29, 2024. User Guide and API Reference available on [Read the Docs](https://qbittorrent-api.readthedocs.io/). diff --git a/docs/source/introduction.rst b/docs/source/introduction.rst index 754ce21fe..beea599eb 100644 --- a/docs/source/introduction.rst +++ b/docs/source/introduction.rst @@ -19,7 +19,7 @@ Introduction Python client implementation for qBittorrent Web API. -Currently supports qBittorrent `v4.6.7 `_ (Web API v2.9.3) released on Sept 16, 2024. +Currently supports qBittorrent `v5.0.0 `_ (Web API v2.11.2) released on Sept 29, 2024. Features ------------ diff --git a/src/qbittorrentapi/_version_support.py b/src/qbittorrentapi/_version_support.py index 88ad73755..7f921b5dc 100644 --- a/src/qbittorrentapi/_version_support.py +++ b/src/qbittorrentapi/_version_support.py @@ -60,13 +60,14 @@ "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", + "v5.0.0rc1": "2.11.2", "v4.6.7": "2.9.3", + "v5.0.0": "2.11.2", } -MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.7"]] = "v4.6.7" -MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.3"]] = "2.9.3" +MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v5.0.0"]] = "v5.0.0" +MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.11.2"]] = "2.11.2" @lru_cache(maxsize=None)