diff --git a/docs/release-notes.md b/docs/release-notes.md index b06b4056f..bef720c2d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest Changes +## 0.12.3 + ### Fixes * 🐛 Fix Rich formatting with no commands. PR [#796](https://github.com/tiangolo/typer/pull/796) by [@svlandeg](https://github.com/svlandeg). diff --git a/typer/__init__.py b/typer/__init__.py index 5669d61b2..d4ac56d0b 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.12.2" +__version__ = "0.12.3" from shutil import get_terminal_size as get_terminal_size