🔖 Release version 0.3.2

This commit is contained in:
Sebastián Ramírez 2020-08-16 16:52:47 +02:00
parent 35eefeb411
commit c3a4c72a4f
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,7 @@
## Latest changes
## 0.3.2
### Features
* Add support for `mypy --strict`. Original PR [#147](https://github.com/tiangolo/typer/pull/147) by [@victorphoenix3](https://github.com/victorphoenix3).

View file

@ -1,6 +1,7 @@
"""Typer, build great CLIs. Easy to code. Based on Python type hints."""
__version__ = "0.3.1"
__version__ = "0.3.2"
from click.exceptions import Abort as Abort
from click.exceptions import BadParameter as BadParameter
from click.exceptions import Exit as Exit