Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael committed Nov 5, 2021
1 parent fb1cc59 commit dc0e880
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion django_workflow_system/models/collections/engagement.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def state(self) -> EngagementStateType:
all_collection_steps.filter(
workflow_order__gt=previous_step.workflow_order
)
.order_by("order")
.order_by("workflow_order", "order")
.first()
)

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = django-workflow-system
version = 0.9.12
version = 0.9.13
description = A highly customizable workflow system for Django. Create surveys, activities, etc.
description-file = README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def read(f):

setup(
name="django-workflow-system",
version="0.9.12",
version="0.9.13",
description="A highly customizable workflow system for Django. Create surveys, activities, etc.",
long_description=read("README.md"),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit dc0e880

Please sign in to comment.