Skip to content

Commit e769c48

Browse files
committed
prepare 1.0.3 release
1 parent dcf24a3 commit e769c48

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

django_typer/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
from typing import ParamSpec
114114

115115

116-
VERSION = (1, 0, 2)
116+
VERSION = (1, 0, 3)
117117

118118
__title__ = "Django Typer"
119119
__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.3
6+
======
7+
8+
* Fixed `Incomplete typing info for @command decorator <https://github.com/bckohan/django-typer/issues/33>`_
9+
510
v1.0.2
611
======
712

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-typer"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "Use Typer to define the CLI for your Django management commands."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)