Skip to content

Commit

Permalink
Merge pull request #6 from watchdogpolska/task_log
Browse files Browse the repository at this point in the history
v1.3.03
  • Loading branch information
PiotrIw authored Jun 20, 2024
2 parents a0dbad8 + b1ea160 commit 7150fbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 1.3.02
current_version = 1.3.03
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
2 changes: 1 addition & 1 deletion background_task/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "1.3.02"
__version__ = "1.3.03"

default_app_config = "background_task.apps.BackgroundTasksAppConfig"

Expand Down
4 changes: 2 additions & 2 deletions background_task/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class TaskAdmin(admin.ModelAdmin):
"locked_by_pid_running",
]
actions = [inc_priority, dec_priority]
list_filter = ["task_name", "has_error", "attempts", "priority"]
list_filter = ["task_name", "attempts", "priority"]


class CompletedTaskAdmin(admin.ModelAdmin):
Expand All @@ -58,7 +58,7 @@ class CompletedTaskAdmin(admin.ModelAdmin):
"locked_by",
"locked_by_pid_running",
]
list_filter = ["task_name", "has_error", "attempts", "priority"]
list_filter = ["task_name", "attempts", "priority"]


admin.site.register(Task, TaskAdmin)
Expand Down

0 comments on commit 7150fbf

Please sign in to comment.