Skip to content

Commit e3aa977

Browse files
authored
support typer 0.24 (#267)
1 parent b6abc95 commit e3aa977

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.6.2 (2026-02-16)
8+
===================
9+
10+
* Support typer 0.24
11+
712
v3.6.1 (2026-02-14)
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.6.1"
7+
version = "3.6.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.24.0",
26+
"typer>=0.23.1,<0.25.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, 6, 1)
43+
VERSION = (3, 6, 2)
4444

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

0 commit comments

Comments
 (0)