Skip to content

Commit

Permalink
Advertise support for qBittorrent v4.6.3 (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 authored Jan 17, 2024
1 parent 8a69486 commit 4265a9b
Show file tree
Hide file tree
Showing 5 changed files with 8 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 @@ -16,7 +16,7 @@ concurrency:

env:
LATEST_PYTHON_VER: 3.12
LATEST_QBT_VER: v4.6.2
LATEST_QBT_VER: v4.6.3
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Change Log
==========
### v2024.1.58 (16 jan 2024)
- Advertise support for qBittorrent v4.6.3

### v2023.11.57 (27 nov 2023)
- Advertise support for qBittorrent v4.6.2

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.2](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.2) (Web API v2.9.3) released on November 27, 2023.
Currently supports qBittorrent [v4.6.3](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.3) (Web API v2.9.3) released on January 14, 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 @@ -23,7 +23,7 @@ Introduction

Python client implementation for qBittorrent Web API.

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.
Currently supports qBittorrent `v4.6.3 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.3>`_ (Web API v2.9.3) released on January 14, 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 @@ -56,9 +56,10 @@
"v4.6.0": "2.9.2",
"v4.6.1": "2.9.3",
"v4.6.2": "2.9.3",
"v4.6.3": "2.9.3",
}

MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.2"]] = "v4.6.2"
MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.3"]] = "v4.6.3"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.3"]] = "2.9.3"


Expand Down

0 comments on commit 4265a9b

Please sign in to comment.