Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Advertise support for qBittorrent v5.0.1 #493

Merged
merged 1 commit into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: v5.0.0
LATEST_QBT_VER: v5.0.1
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
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 [v5.0.0](https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.0) (Web API v2.11.2) released on Sept 29, 2024.
Currently supports qBittorrent [v5.0.1](https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.1) (Web API v2.11.2) released on Oct 28, 2024.

User Guide and API Reference available on [Read the Docs](https://qbittorrent-api.readthedocs.io/).

Expand Down
2 changes: 2 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@
r"^https://$",
r"^http://localhost",
r"^http://example.com",
# RTD CI seems to be banned...
r"^https://distrowatch.com/news/torrents.xml",
]

# ignore GitHub code line number anchors that are generated by javascript
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 `v5.0.0 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.0>`_ (Web API v2.11.2) released on Sept 29, 2024.
Currently supports qBittorrent `v5.0.1 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-5.0.1>`_ (Web API v2.11.2) released on Oct 28, 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 @@ -64,9 +64,10 @@
"v5.0.0rc1": "2.11.2",
"v4.6.7": "2.9.3",
"v5.0.0": "2.11.2",
"v5.0.1": "2.11.2",
}

MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v5.0.0"]] = "v5.0.0"
MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v5.0.1"]] = "v5.0.1"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.11.2"]] = "2.11.2"


Expand Down