Skip to content

Commit

Permalink
Bump to v2023.11.56; add support for qBittorrent v4.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Nov 21, 2023
1 parent a51398e commit d32ab27
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .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.0
LATEST_QBT_VER: v4.6.1
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
python-version: ${{ env.LATEST_PYTHON_VER }}
cache: pip
check-latest: true
cache-dependency-path: ${{ github.workspace }}/setup.cfg
cache-dependency-path: ${{ github.workspace }}/pyproject.toml

- name: Install
run: pip install .[dev]
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
==========
### v2023.mm.56 (dd mmm 2023)
### v2023.11.56 (20 nov 2023)
- Advertise support for qBittorrent v4.6.1
- Add support for ``torrents/count`` (#366)

### v2023.11.55 (6 nov 2023)
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.0](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.0) (Web API v2.9.2) released on October 21, 2023.
Currently supports qBittorrent [v4.6.1](https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.1) (Web API v2.9.3) released on November 20, 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.6.0 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.0>`_ (Web API v2.9.2) released on October 21, 2023.
Currently supports qBittorrent `v4.6.1 <https://github.com/qbittorrent/qBittorrent/releases/tag/release-4.6.1>`_ (Web API v2.9.3) released on November 20, 2023.

Features
------------
Expand Down
5 changes: 3 additions & 2 deletions src/qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,11 @@
"v4.6.0rc1": "2.9.2",
"v4.6.0rc2": "2.9.2",
"v4.6.0": "2.9.2",
"v4.6.1": "2.9.3",
}

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"
MOST_RECENT_SUPPORTED_APP_VERSION: Final[Literal["v4.6.1"]] = "v4.6.1"
MOST_RECENT_SUPPORTED_API_VERSION: Final[Literal["2.9.3"]] = "2.9.3"


@lru_cache(maxsize=None)
Expand Down

0 comments on commit d32ab27

Please sign in to comment.