We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf24a3 commit e769c48Copy full SHA for e769c48
django_typer/__init__.py
@@ -113,7 +113,7 @@
113
from typing import ParamSpec
114
115
116
-VERSION = (1, 0, 2)
+VERSION = (1, 0, 3)
117
118
__title__ = "Django Typer"
119
__version__ = ".".join(str(i) for i in VERSION)
doc/source/changelog.rst
@@ -2,6 +2,11 @@
2
Change Log
3
==========
4
5
+v1.0.3
6
+======
7
+
8
+* Fixed `Incomplete typing info for @command decorator <https://github.com/bckohan/django-typer/issues/33>`_
9
10
v1.0.2
11
======
12
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
name = "django-typer"
-version = "1.0.2"
+version = "1.0.3"
description = "Use Typer to define the CLI for your Django management commands."
authors = ["Brian Kohan <[email protected]>"]
license = "MIT"
0 commit comments