Skip to content

Commit 6eed474

Browse files
committed
Bump dependencies and version for new release.
Updated dependencies in `poetry.lock` to newer versions, aligning with compatibility requirements and feature improvements. Incremented project version in `.bumpversion.cfg` from 0.4.3 to 0.5.0 to reflect these updates.
1 parent 9504943 commit 6eed474

File tree

6 files changed

+945
-750
lines changed

6 files changed

+945
-750
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.3
2+
current_version = 0.5.0
33
commit = True
44
tag = True
55

demoproject/demoproject/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
RQ_QUEUES = {
143143
'default': {
144144
'URL': 'redis://localhost:6379', # Adjust to your Redis config
145-
'DEFAULT_TIMEOUT': 360,
145+
'DEFAULT_TIMEOUT': 3600,
146146
},
147147
}
148148

docs/howtos/dev_publish_changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The package is published on https://github.com/openpolis/django-eztaskmanager.
1+
The package is published on https://github.com/openpolis/django-eztaskmanager.
22

33
This is the procedure to follow.
44

eztaskmanager/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Django application to manage async tasks via admin interface."""
22

33
# PEP 440 - version number format
4-
VERSION = (0, 4, 3)
4+
VERSION = (0, 5, 0)
55

66
# PEP 396 - module version variable
77
__version__ = ".".join(map(str, VERSION))

0 commit comments

Comments
 (0)