diff --git a/docs/release-notes.md b/docs/release-notes.md index 0571ef345f..1938376e72 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.12.5 + ### Features * 💄 Unify the width of the Rich console for help and errors. PR [#788](https://github.com/fastapi/typer/pull/788) by [@racinmat](https://github.com/racinmat). diff --git a/typer/__init__.py b/typer/__init__.py index dd2531263d..b422dd00d3 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.4" +__version__ = "0.12.5" from shutil import get_terminal_size as get_terminal_size