diff --git a/docs/release-notes.md b/docs/release-notes.md index 95b6381..6ed89ba 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest Changes +## 0.4.1 + ### Fixes * 🐛 Fix import of `get_terminal_size` for Click 8.1.0 support and upgrade Black to fix CI. PR [#380](https://github.com/tiangolo/typer/pull/380) by [@tiangolo](https://github.com/tiangolo) based on original PR [#375](https://github.com/tiangolo/typer/pull/375) by [@madkinsz](https://github.com/madkinsz). diff --git a/typer/__init__.py b/typer/__init__.py index fa6fbd0..e813d1a 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.0" +__version__ = "0.4.1" from shutil import get_terminal_size as get_terminal_size