Skip to content

Commit

Permalink
Advertise support for qBittorrent 4.5.4 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 authored Jun 19, 2023
1 parent ab532ec commit 2033a56
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
strategy:
matrix:
QBT_VER:
- "v4.6.0alpha1"
- "v4.6.0beta1"
- "v4.4.4"
- "v4.3.9"
- "v4.3.5"
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
==========
### 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
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.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/).

Expand Down
2 changes: 1 addition & 1 deletion docs/source/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Introduction

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.

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.6.49
version = 2023.6.50
author = Russell Martin
author_email = [email protected]
maintainer = Russell Martin
Expand Down
4 changes: 3 additions & 1 deletion src/qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down

0 comments on commit 2033a56

Please sign in to comment.