Skip to content

Commit

Permalink
Advertise support for qBittorrent v4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Oct 23, 2023
1 parent 02dd2d8 commit 5d485b9
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ concurrency:
cancel-in-progress: true

env:
LATEST_PYTHON_VER: 3.11
LATEST_QBT_VER: v4.5.5
LATEST_PYTHON_VER: 3.12
LATEST_QBT_VER: v4.6.0
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Change log
==========
### vXXXX.X.XX (X xxx XXXX)
### v2023.10.54 (22 oct 2023)
- Advertise support for qBittorrent v4.6.0
- Dropped support for legacy Python versions; Python 3.8+ is supported (#333)
- Refactored typing from stub files in to source (#345)
- Dropped support for API method arguments ``hash`` and ``hashes``; use ``torrent_hash`` and ``torrent_hashes``, respectively (#345)
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.5.5](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.5.5) (Web API v2.8.19) released on August 28, 2023.
Currently supports qBittorrent [v4.6.0](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.0) (Web API v2.9.2) released on October 21, 2023.

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

Python client implementation for qBittorrent Web API.

Currently supports qBittorrent `v4.5.5 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.5.5>`_ (Web API v2.8.19) released on August 28, 2023.
Currently supports qBittorrent `v4.6.0 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.0>`_ (Web API v2.9.2) released on October 21, 2023.

Features
------------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = qbittorrent-api
version = 2023.9.53
version = 2023.10.54
author = Russell Martin
maintainer = Russell Martin
url = https://github.com/rmartin16/qbittorrent-api
Expand Down
9 changes: 5 additions & 4 deletions src/qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,16 @@
"v4.5.2": "2.8.19",
"v4.6.0alpha1": "2.9.1",
"v4.5.3": "2.8.19",
"v4.5.4": "2.8.19",
"v4.5.5": "2.8.19",
"v4.6.0beta1": "2.9.1",
"v4.6.0rc1": "2.9.2",
"v4.6.0rc2": "2.9.2",
"v4.5.4": "2.8.19",
"v4.5.5": "2.8.19",
"v4.6.0": "2.9.2",
}

MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.5.5"]] = "v4.5.5"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.8.19"]] = "2.8.19"
MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.0"]] = "v4.6.0"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.2"]] = "2.9.2"


@lru_cache(maxsize=None)
Expand Down

0 comments on commit 5d485b9

Please sign in to comment.