Skip to content

Commit

Permalink
Advertise support for qBittorrent v4.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmartin16 committed Oct 22, 2023
1 parent 02dd2d8 commit 0f455a0
Show file tree
Hide file tree
Showing 3 changed files with 8 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,8 +15,8 @@ concurrency:
cancel-in-progress: true

env:
LATEST_PYTHON_VER: 3.11
LATEST_QBT_VER: v4.5.5
LATEST_PYTHON_VER: 3.12
LATEST_QBT_VER: v4.6.0
QBITTORRENTAPI_HOST: localhost:8080
QBITTORRENTAPI_USERNAME: admin
QBITTORRENTAPI_PASSWORD: adminadmin
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Change log
==========
### vXXXX.X.XX (X xxx XXXX)
- Advertise support for qBittorrent v4.6.0
- Dropped support for legacy Python versions; Python 3.8+ is supported (#333)
- Refactored typing from stub files in to source (#345)
- Dropped support for API method arguments ``hash`` and ``hashes``; use ``torrent_hash`` and ``torrent_hashes``, respectively (#345)
Expand Down
9 changes: 5 additions & 4 deletions src/qbittorrentapi/_version_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,16 @@
"v4.5.2": "2.8.19",
"v4.6.0alpha1": "2.9.1",
"v4.5.3": "2.8.19",
"v4.5.4": "2.8.19",
"v4.5.5": "2.8.19",
"v4.6.0beta1": "2.9.1",
"v4.6.0rc1": "2.9.2",
"v4.6.0rc2": "2.9.2",
"v4.5.4": "2.8.19",
"v4.5.5": "2.8.19",
"v4.6.0": "2.9.2",
}

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


@lru_cache(maxsize=None)
Expand Down

0 comments on commit 0f455a0

Please sign in to comment.