diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7cf05ddc1..181d343bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ concurrency: env: LATEST_PYTHON_VER: 3.12 - LATEST_QBT_VER: v4.6.1 + LATEST_QBT_VER: v4.6.2 QBITTORRENTAPI_HOST: localhost:8080 QBITTORRENTAPI_USERNAME: admin QBITTORRENTAPI_PASSWORD: adminadmin diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a57cf5f..9d9bca4f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ Change Log ========== +### v2023.11.57 (27 nov 2023) +- Advertise support for qBittorrent v4.6.2 + ### v2023.11.56 (20 nov 2023) - Advertise support for qBittorrent v4.6.1 - Add support for ``torrents/count`` (#366) diff --git a/README.md b/README.md index 081b0222b..c77abd51c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Python client implementation for qBittorrent Web API -Currently supports qBittorrent [v4.6.1](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.1) (Web API v2.9.3) released on November 20, 2023. +Currently supports qBittorrent [v4.6.2](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.2) (Web API v2.9.3) released on November 27, 2023. 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 af0e801b2..d0af4ad4f 100644 --- a/docs/source/introduction.rst +++ b/docs/source/introduction.rst @@ -23,7 +23,7 @@ Introduction Python client implementation for qBittorrent Web API. -Currently supports qBittorrent `v4.6.1 `_ (Web API v2.9.3) released on November 20, 2023. +Currently supports qBittorrent `v4.6.2 `_ (Web API v2.9.3) released on November 27, 2023. Features ------------ diff --git a/src/qbittorrentapi/_version_support.py b/src/qbittorrentapi/_version_support.py index 0b9f4eb70..43b4d75a8 100644 --- a/src/qbittorrentapi/_version_support.py +++ b/src/qbittorrentapi/_version_support.py @@ -55,9 +55,10 @@ "v4.6.0rc2": "2.9.2", "v4.6.0": "2.9.2", "v4.6.1": "2.9.3", + "v4.6.2": "2.9.3", } -MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.1"]] = "v4.6.1" +MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.2"]] = "v4.6.2" MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.3"]] = "2.9.3"