diff --git a/docs/release-notes.md b/docs/release-notes.md index 33cf560440..ca84cfef1a 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,6 +1,8 @@ ## Latest Changes +## 0.4.2 + ### Fixes * 🐛 Fix type conversion for `List` and `Tuple` and their internal types. PR [#143](https://github.com/tiangolo/typer/pull/143) by [@hellowhistler](https://github.com/hellowhistler). diff --git a/typer/__init__.py b/typer/__init__.py index e813d1a03e..9cb1c155e4 100644 --- a/typer/__init__.py +++ b/typer/__init__.py @@ -1,6 +1,6 @@ """Typer, build great CLIs. Easy to code. Based on Python type hints.""" -__version__ = "0.4.1" +__version__ = "0.4.2" from shutil import get_terminal_size as get_terminal_size