Skip to content

Commit 176652a

Browse files
committed
fix #21
1 parent 0e16484 commit 176652a

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
@@ -100,7 +100,7 @@
100100
from .types import Traceback, Verbosity, Version
101101
from .utils import _command_context, traceback_config, with_typehint
102102

103-
VERSION = (1, 0, 0)
103+
VERSION = (1, 0, 1)
104104

105105
__title__ = "Django Typer"
106106
__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+
v1.0.1
6+
======
7+
8+
* Fixed `shell_completion broken for click < 8.1 <https://github.com/bckohan/django-typer/issues/21>`_
9+
510
v1.0.0
611
======
712

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-typer"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Use Typer to define the CLI for your Django management commands."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"
@@ -42,7 +42,7 @@ exclude = ["django_typer/tests", "django_typer/examples", "django_typer/locale"]
4242
[tool.poetry.dependencies]
4343
python = ">=3.8,<4.0"
4444
Django = ">=3.2,<6.0"
45-
click = "^8.0.0"
45+
click = "^8.1.0"
4646

4747
# typer's release history is full of breaking changes for minor versions
4848
# given the reliance on some of its private internals we peg the typer

0 commit comments

Comments
 (0)