From bd3ed984cb78041f8e15ec6fe9c31d6a5597c5c1 Mon Sep 17 00:00:00 2001 From: kannibalox Date: Sun, 2 Apr 2023 17:23:59 -0400 Subject: [PATCH] Bump patch version --- CHANGELOG.md | 5 +++++ pyproject.toml | 2 +- src/PtpUploader/Job/Supervisor.py | 8 ++++---- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3c3c505..af992ae3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [0.11.1] +### Fixed +- Ignore missing result during srrdb.com check +- Update objects being passed to pyrosimple + ## [0.11.0] ### Added - Experimental libmpv screenshot tool. This is primarily to help with diff --git a/pyproject.toml b/pyproject.toml index d69e97a3..973f1c8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PtpUploader" -version = "0.11.0" +version = "0.11.1" description = "A small uploader for a mildly popular movie site" authors = ["kannibalox "] packages = [ diff --git a/src/PtpUploader/Job/Supervisor.py b/src/PtpUploader/Job/Supervisor.py index 76c44134..0e5bec55 100644 --- a/src/PtpUploader/Job/Supervisor.py +++ b/src/PtpUploader/Job/Supervisor.py @@ -1,5 +1,4 @@ -""" -Replaces the artisanal (but impressive) python 2 threading system +"""Replaces the artisanal (but impressive) python 2 threading system This directly handles: - Loading announcement files - Scanning the DB for work @@ -10,10 +9,11 @@ to allow for interrupting the work phases. This allows this class to check the status of any active futures when deciding how to handle start/stop requests. -However, there is no direct locking of resources, as we can use the DB as more flexible thread-safe state -holder. +However, there is no direct locking of resources, as we can use the DB +as more flexible thread-safe state holder. It's called the JobSupervisor because supervisors are better than managers. + """ import logging