Skip to content

Commit c02fa58

Browse files
committed
bump rich version
1 parent 865f048 commit c02fa58

File tree

4 files changed

+151
-112
lines changed

4 files changed

+151
-112
lines changed

doc/source/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Change Log
33
==========
44

5+
v1.6.1 (2025-07-25)
6+
===================
7+
8+
* Bump maximum rich dependency version to <15
9+
10+
511
v1.6.0 (2025-07-22)
612
===================
713

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "django-routines"
7-
version = "1.6.0"
7+
version = "1.6.1"
88
description = "Define named groups of management commands in Django settings files for batched execution."
99
requires-python = ">=3.9,<4.0"
1010
authors = [
@@ -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"

src/django_routines/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from django.core.exceptions import ImproperlyConfigured
3131
from 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)

0 commit comments

Comments
 (0)