Skip to content

Commit cf11503

Browse files
committed
fix #154
1 parent bbbcf7d commit cf11503

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
model_parser_completer, # noqa: F401
4848
)
4949

50-
VERSION = (2, 5, 0)
50+
VERSION = (2, 6, 0)
5151

5252
__title__ = "Django Typer"
5353
__version__ = ".".join(str(i) for i in VERSION)

doc/source/changelog.rst

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

5+
v2.6.0 (2024-12-03)
6+
===================
7+
8+
* Implemented `Support Typer 0.15.x <https://github.com/django-commons/django-typer/issues/154>`_
9+
510
v2.5.0 (2024-11-29)
611
===================
712

pyproject.toml

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

55
[tool.poetry]
66
name = "django-typer"
7-
version = "2.5.0"
7+
version = "2.6.0"
88
description = "Use Typer to define the CLI for your Django management commands."
99
authors = [
1010
"Brian Kohan <[email protected]>",
@@ -63,7 +63,7 @@ click = ">=8.1.0,<9.0.0"
6363
# typer's release history is full of breaking changes for minor versions
6464
# given the reliance on some of its private internals we peg the typer
6565
# version very strictly to bug fix releases for specific minor lines.
66-
typer-slim = ">=0.14.0,<0.15.0"
66+
typer-slim = ">=0.14.0,<0.16.0"
6767

6868
# this should track typer's rich dependency, so long as our console
6969
# patches still work - so be sure to test on the low end of the range

0 commit comments

Comments
 (0)