diff --git a/docs/release-notes.md b/docs/release-notes.md index b1830028e0..edce77dae4 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -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). diff --git a/typer/__init__.py b/typer/__init__.py index 1b70165a50..52163869a7 100644 --- a/typer/__init__.py +++ b/typer/__init__.py @@ -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