From 8f31fa7202f611e77cc89ced78296df1af491767 Mon Sep 17 00:00:00 2001 From: Russell Martin Date: Wed, 20 Nov 2024 21:02:56 -0500 Subject: [PATCH] Advertise support for qBittorrent v5.0.2 --- .github/workflows/ci.yml | 2 +- README.md | 2 +- docs/source/introduction.rst | 2 +- src/qbittorrentapi/_version_support.py | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec397ef9c..b11de7b31 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: v5.0.1 + LATEST_QBT_VER: v5.0.2 QBITTORRENTAPI_HOST: localhost:8080 QBITTORRENTAPI_USERNAME: admin QBITTORRENTAPI_PASSWORD: adminadmin diff --git a/README.md b/README.md index 5c1dba674..9f811e481 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Python client implementation for qBittorrent Web API -Currently supports qBittorrent [v5.0.1](https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.1) (Web API v2.11.2) released on Oct 28, 2024. +Currently supports qBittorrent [v5.0.2](https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.2) (Web API v2.11.2) released on Nov 17, 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 60801e52d..0f0195593 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 `v5.0.1 `_ (Web API v2.11.2) released on Oct 28, 2024. +Currently supports qBittorrent `v5.0.2 `_ (Web API v2.11.2) released on Nov 17, 2024. Features ------------ diff --git a/src/qbittorrentapi/_version_support.py b/src/qbittorrentapi/_version_support.py index f03df0a32..34752c3cb 100644 --- a/src/qbittorrentapi/_version_support.py +++ b/src/qbittorrentapi/_version_support.py @@ -65,9 +65,10 @@ "v4.6.7": "2.9.3", "v5.0.0": "2.11.2", "v5.0.1": "2.11.2", + "v5.0.2": "2.11.2", } -MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v5.0.1"]] = "v5.0.1" +MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v5.0.2"]] = "v5.0.2" MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.11.2"]] = "2.11.2"