Skip to content

Commit

Permalink
[release] Final loop hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Nov 17, 2023
1 parent bc7a82c commit 9140493
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.8.2
current_version = 3.8.2-beta-1
tag = false
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*)-(?P<build>\d+))?
serialize =
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM python:3.10

LABEL Name="qBitrr"
LABEL Maintainer="Feramance"
LABEL Version="3.8.2"
LABEL Version="3.8.2-beta-1"

# Env used by the script to determine if its inside a docker -
# if this is set to 69420 it will change the working dir for docker specific values
Expand Down
20 changes: 10 additions & 10 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -2318,8 +2318,8 @@ def maybe_do_search(
file_model.EntryId,
file_model.AirDateUtc,
)
self.file_model.update(Searched=True, Upgrade=True).where(
self.file_model.EntryId == file_model.EntryId
file_model.update(Searched=True, Upgrade=True).where(
file_model.EntryId == file_model.EntryId
).execute()
return True
active_commands = self.arr_db_query_commands_count()
Expand Down Expand Up @@ -2363,8 +2363,8 @@ def maybe_do_search(
requests.exceptions.ConnectionError,
):
completed = True
self.file_model.update(Searched=True, Upgrade=True).where(
self.file_model.EntryId == file_model.EntryId
file_model.update(Searched=True, Upgrade=True).where(
file_model.EntryId == file_model.EntryId
).execute()
self.logger.hnotice(
"%sSearching for: %s | S%02dE%03d | %s | [id=%s|AirDateUTC=%s]",
Expand Down Expand Up @@ -2414,8 +2414,8 @@ def maybe_do_search(
requests.exceptions.ConnectionError,
):
completed = True
self.file_model.update(Searched=True, Upgrade=True).where(
self.file_model.EntryId == file_model.EntryId
file_model.update(Searched=True, Upgrade=True).where(
file_model.EntryId == file_model.EntryId
).execute()
self.logger.hnotice(
"%sSearching for: %s | %s | [id=%s]",
Expand All @@ -2442,8 +2442,8 @@ def maybe_do_search(
file_model.TmdbId,
file_model.EntryId,
)
self.file_model.update(Searched=True, Upgrade=True).where(
self.file_model.EntryId == file_model.EntryId
file_model.update(Searched=True, Upgrade=True).where(
file_model.EntryId == file_model.EntryId
).execute()
return True
active_commands = self.arr_db_query_commands_count()
Expand Down Expand Up @@ -2480,8 +2480,8 @@ def maybe_do_search(
requests.exceptions.ConnectionError,
):
completed = True
self.file_model.update(Searched=True, Upgrade=True).where(
self.file_model.EntryId == file_model.EntryId
file_model.update(Searched=True, Upgrade=True).where(
file_model.EntryId == file_model.EntryId
).execute()
self.logger.hnotice(
"%sSearching for: %s (%s) [tmdbId=%s|id=%s]",
Expand Down
2 changes: 1 addition & 1 deletion qBitrr/bundled_data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.2"
version = "3.8.2-beta-1"
git_hash = "6f3e51d"
license_text = (
"Licence can be found on:\n\nhttps://github.com/Feramance/qBitrr/blob/master/LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = qBitrr2
version = 3.8.2
version = 3.8.2-beta-1
description = "A simple Python script to talk to qBittorrent and Arr's"
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down Expand Up @@ -50,7 +50,7 @@ install_requires =
qbittorrent-api==2023.7.52
requests==2.31.0
tomlkit==0.7.2
python_requires = >=3.8.2,<4
python_requires = >=3.8.2-beta-1,<4
include_package_data = True

[options.packages.find]
Expand Down

0 comments on commit 9140493

Please sign in to comment.