diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5191d65f2..016bf14bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ concurrency: env: LATEST_PYTHON_VER: "3.11" - LATEST_QBT_VER: "v4.5.3" + LATEST_QBT_VER: "v4.5.4" QBITTORRENTAPI_HOST: "localhost:8080" QBITTORRENTAPI_USERNAME: "admin" QBITTORRENTAPI_PASSWORD: "adminadmin" @@ -99,7 +99,7 @@ jobs: strategy: matrix: QBT_VER: - - "v4.6.0alpha1" + - "v4.6.0beta1" - "v4.4.4" - "v4.3.9" - "v4.3.5" diff --git a/CHANGELOG.md b/CHANGELOG.md index 81f0d75c7..c96212dd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ Change log ========== +### v2023.6.50 (19 jun 2023) +- Advertise support for qBittorrent v4.5.4 + ### v2023.6.49 (9 jun 2023) - The `Client` is no longer binded to `List`s (#230) - This does not affect normal operation but allows for slicing, adding, and copying `List`s diff --git a/README.md b/README.md index be71148da..09ee5a5a7 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Python client implementation for qBittorrent Web API -Currently supports qBittorrent [v4.5.3](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.5.3) (Web API v2.8.19) released on May 27, 2023. +Currently supports qBittorrent [v4.5.4](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.5.4) (Web API v2.8.19) released on June 17, 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 e84d843de..63b3500e0 100644 --- a/docs/source/introduction.rst +++ b/docs/source/introduction.rst @@ -25,7 +25,7 @@ Introduction Python client implementation for qBittorrent Web API. -Currently supports qBittorrent `v4.5.3 `_ (Web API v2.8.19) released on May 27, 2023. +Currently supports qBittorrent `v4.5.4 `_ (Web API v2.8.19) released on June 17, 2023. Features ------------ diff --git a/setup.cfg b/setup.cfg index 38fef046d..2f0338aac 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = qbittorrent-api -version = 2023.6.49 +version = 2023.6.50 author = Russell Martin author_email = rmartin16@gmail.com maintainer = Russell Martin diff --git a/src/qbittorrentapi/_version_support.py b/src/qbittorrentapi/_version_support.py index a5a70514a..24a6ce367 100644 --- a/src/qbittorrentapi/_version_support.py +++ b/src/qbittorrentapi/_version_support.py @@ -48,9 +48,11 @@ "v4.5.2": "2.8.19", "v4.6.0alpha1": "2.9.1", "v4.5.3": "2.8.19", + "v4.6.0beta1": "2.9.1", + "v4.5.4": "2.8.19", } -MOST_RECENT_SUPPORTED_APP_VERSION = "v4.5.3" +MOST_RECENT_SUPPORTED_APP_VERSION = "v4.5.4" MOST_RECENT_SUPPORTED_API_VERSION = "2.8.19"