Skip to content

Commit 68c2438

Browse files
committed
support typer 0.25.x
1 parent 1343363 commit 68c2438

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

doc/source/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
Change Log
55
==========
66

7+
v3.7.2 (2026-04-26)
8+
===================
9+
10+
* Support `Typer 0.25.x <https://github.com/fastapi/typer/releases/tag/0.25.0>`_
11+
712
v3.7.1 (2026-03-31)
813
===================
914

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-typer"
7-
version = "3.7.1"
7+
version = "3.7.2"
88
requires-python = ">=3.10,<4.0"
99
description = "Use Typer to define the CLI for your Django management commands."
1010
authors = [
@@ -23,7 +23,7 @@ dependencies = [
2323
"click>=8.1.8,<8.4",
2424
# given the reliance on private Typer internals we peg the
2525
# version very strictly to bug fix releases for specific feature lines.
26-
"typer>=0.23.1,<0.25.0",
26+
"typer>=0.23.1,<0.26.0",
2727
]
2828
classifiers = [
2929
"Environment :: Console",

src/django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
and keep a tight version lock on Typer.
4141
"""
4242

43-
VERSION = (3, 7, 1)
43+
VERSION = (3, 7, 2)
4444

4545
__title__ = "Django Typer"
4646
__version__ = ".".join(str(i) for i in VERSION)

0 commit comments

Comments
 (0)