diff --git a/docs/release-notes.md b/docs/release-notes.md index b06b4056fc..bef720c2d9 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 5669d61b2a..d4ac56d0ba 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