Skip to content

Commit

Permalink
Bump patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
kannibalox committed Apr 2, 2023
1 parent 66e2ab4 commit bd3ed98
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
packages = [
Expand Down
8 changes: 4 additions & 4 deletions src/PtpUploader/Job/Supervisor.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit bd3ed98

Please sign in to comment.