Skip to content

Commit

Permalink
Advertise support for qBittorrent v4.6.5; bump to 2024.5.61 (#454)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed May 26, 2024
1 parent f8e2ff5 commit 92d679e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ concurrency:

env:
LATEST_PYTHON_VER: 3.12
LATEST_QBT_VER: v4.6.4
LATEST_QBT_VER: v4.6.5
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Change Log
==========
### v2024.5.61 (26 may 2024)
- Advertise support for qBittorrent v4.6.5
- Packages published to PyPI are now attested by GitHub (#453)
- Included changes for upcoming qBittorrent v5.0.0 release:
- Rename resume/pause actions for torrents to start/stop (#434)
- For instance, ``client.torrents_pause()`` is now ``client.torrents_stop()``
- All existing method and argument names are still supported and are aliased to the new names
- Add support for ``app/getDirectoryContent`` (#449)
- Add support for ``search/downloadTorrent`` (#451)

### v2024.3.60 (25 mar 2024)
- Advertise support for qBittorrent v4.6.4

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.6.4](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.4) (Web API v2.9.3) released on March 23, 2024.
Currently supports qBittorrent [v4.6.5](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.5) (Web API v2.9.3) released on May 26, 2024.

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

Python client implementation for qBittorrent Web API.

Currently supports qBittorrent `v4.6.4 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.4>`_ (Web API v2.9.3) released on March 23, 2024.
Currently supports qBittorrent `v4.6.5 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.5>`_ (Web API v2.9.3) released on May 26, 2024.

Features
------------
Expand Down
3 changes: 2 additions & 1 deletion src/qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,10 @@
"v4.6.3": "2.9.3",
"v5.0.0beta1": "2.10.4",
"v4.6.4": "2.9.3",
"v4.6.5": "2.9.3",
}

MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.4"]] = "v4.6.4"
MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.5"]] = "v4.6.5"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.3"]] = "2.9.3"


Expand Down

0 comments on commit 92d679e

Please sign in to comment.