From c3a4c72a4f1a18b7f16addb508862ec63411fa63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sun, 16 Aug 2020 16:52:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=20version=200.3.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/release-notes.md | 2 ++ typer/__init__.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) 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