File tree Expand file tree Collapse file tree 4 files changed +151
-112
lines changed
Expand file tree Collapse file tree 4 files changed +151
-112
lines changed Original file line number Diff line number Diff line change 22Change Log
33==========
44
5+ v1.6.1 (2025-07-25)
6+ ===================
7+
8+ * Bump maximum rich dependency version to <15
9+
10+
511v1.6.0 (2025-07-22)
612===================
713
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " django-routines"
7- version = " 1.6.0 "
7+ version = " 1.6.1 "
88description = " Define named groups of management commands in Django settings files for batched execution."
99requires-python = " >=3.9,<4.0"
1010authors = [
@@ -58,7 +58,7 @@ packages = ["src/django_routines"]
5858[project .optional-dependencies ]
5959# this should track typer's rich dependency, so long as our console
6060# patches still work - so be sure to test on the low end of the range
61- rich = [" rich>=10.11.0,<14 .0.0" ]
61+ rich = [" rich>=10.11.0,<15 .0.0" ]
6262
6363[project .urls ]
6464"Homepage" = " https://django-routines.readthedocs.io"
Original file line number Diff line number Diff line change 3030from django .core .exceptions import ImproperlyConfigured
3131from django .utils .functional import Promise
3232
33- VERSION = (1 , 6 , 0 )
33+ VERSION = (1 , 6 , 1 )
3434
3535__title__ = "Django Routines"
3636__version__ = "." .join (str (i ) for i in VERSION )
You can’t perform that action at this time.
0 commit comments