Skip to content

Commit 9bae474

Browse files
committed
fix #213
1 parent aa54092 commit 9bae474

File tree

4 files changed

+20
-14
lines changed

4 files changed

+20
-14
lines changed

doc/source/changelog.rst

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
Change Log
55
==========
66

7+
8+
v3.1.1 (2024-04-30)
9+
===================
10+
11+
* Implemented `Support rich 14 <https://github.com/django-commons/django-typer/issues/213>`_
12+
713
v3.1.0 (2024-04-02)
814
===================
915

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "django-typer"
7-
version = "3.1.0"
7+
version = "3.1.1"
88
requires-python = ">=3.9,<4.0"
99
description = "Use Typer to define the CLI for your Django management commands."
1010
authors = [
@@ -64,7 +64,7 @@ packages = ["src/django_typer"]
6464
[project.optional-dependencies]
6565
# this should track typer's rich dependency, so long as our console
6666
# patches still work - so be sure to test on the low end of the range
67-
rich = ["rich>=10.11.0,<14.0.0"]
67+
rich = ["rich>=10.11.0,<15.0.0"]
6868

6969
[project.urls]
7070
"Homepage" = "https://django-typer.readthedocs.io"

src/django_typer/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
and keep a tight version lock on Typer.
3434
"""
3535

36-
VERSION = (3, 1, 0)
36+
VERSION = (3, 1, 1)
3737

3838
__title__ = "Django Typer"
3939
__version__ = ".".join(str(i) for i in VERSION)

uv.lock

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)