Skip to content

Commit

Permalink
4.1.13 (#691)
Browse files Browse the repository at this point in the history
* 4.1.13-develop

* Bump croniter from 3.0.3 to 3.0.4 (#680)

Bumps [croniter](https://github.com/kiorky/croniter) from 3.0.3 to 3.0.4.
- [Changelog](https://github.com/kiorky/croniter/blob/master/CHANGELOG.rst)
- [Commits](kiorky/croniter@3.0.3...3.0.4)

---
updated-dependencies:
- dependency-name: croniter
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump qbittorrent-api from 2024.9.67 to 2024.10.68 (#684)

Bumps [qbittorrent-api](https://github.com/rmartin16/qbittorrent-api) from 2024.9.67 to 2024.10.68.
- [Release notes](https://github.com/rmartin16/qbittorrent-api/releases)
- [Changelog](https://github.com/rmartin16/qbittorrent-api/blob/main/CHANGELOG.md)
- [Commits](rmartin16/qbittorrent-api@v2024.9.67...v2024.10.68)

---
updated-dependencies:
- dependency-name: qbittorrent-api
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update SUPPORTED_VERSIONS.json

* bump develop

* (ci): add ci for version bump on develop (#688)

* Fixes bug in torrent exporting for qbit versions under 4.5.0

* Bump actions/checkout from 3 to 4 (#690)

* Bump actions/setup-python from 3 to 5 (#689)

* Bump croniter from 3.0.4 to 5.0.1 (#685)

* [pre-commit.ci] pre-commit autoupdate (#682)

* 4.1.13

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: bakerboy448 <[email protected]>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Nov 9, 2024
1 parent 00ce5c6 commit 6931495
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 14 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run Pre-Commit

on:
pull_request:
branches:
- develop # Adjust as needed to only run on branches containing 'develop'
push:
branches:
- develop # Adjust as needed

jobs:
pre-commit:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.9'

- name: Install dependencies
run: |
pip install pre-commit
- name: Run pre-commit version check
run: |
pre-commit run increase-version --all-files
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ repos:
name: isort (python)
args: [--force-single-line-imports, --profile, black]
- repo: https://github.com/asottile/pyupgrade
rev: v3.18.0
rev: v3.19.0
hooks:
- id: pyupgrade
args: [--py3-plus]
Expand Down
11 changes: 4 additions & 7 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# Requirements Updated
humanize==4.11.0

# New Updates
- Adds new script to remove cross-seed tag (`scripts/remove_cross-seed_tag.py`)
croniter==5.0.1
qbittorrent-api==2024.10.68

# Bug Fixes
- List orphaned files when reaches max threshold. (Closes #672)
- Removing empty directories now ignores exclude patterns (Closes #624)
- Fixes bug in torrent exporting for versions < 4.5.0

**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.1.11...v4.1.12
**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.1.12...v4.1.13
4 changes: 2 additions & 2 deletions SUPPORTED_VERSIONS.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"qbitapi": "2024.9.67"
},
"develop": {
"qbit": "v5.0.0",
"qbitapi": "2024.9.67"
"qbit": "v5.0.1",
"qbitapi": "2024.10.68"
}
}
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.12
4.1.13
2 changes: 1 addition & 1 deletion modules/qbittorrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def tor_delete_recycle(self, torrent, info):
torrent_export_path = os.path.join(recycle_path, "torrents_export") # Exported torrent file (qbittorrent v4.5.0+)
torrents_json_path = os.path.join(recycle_path, "torrents_json")
torrent_name = info["torrents"][0]
torrent_exportable = self.current_version >= "4.5.0"
torrent_exportable = self.current_version >= "v4.5.0"
os.makedirs(recycle_path, exist_ok=True)
if self.config.recyclebin["save_torrents"]:
if os.path.isdir(torrent_path) is False:
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
bencodepy==0.9.5
croniter==3.0.3
croniter==5.0.1
GitPython==3.1.43
humanize==4.11.0
pytimeparse2==1.7.1
qbittorrent-api==2024.9.67
qbittorrent-api==2024.10.68
requests==2.32.3
retrying==1.3.4
ruamel.yaml==0.18.6
Expand Down

0 comments on commit 6931495

Please sign in to comment.