diff --git a/docs/release-notes.md b/docs/release-notes.md index 32f4e8b1d8..fcde3f894d 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.12.4 + ### Features * ✨ Add support for Python 3.12, tests in CI and official marker. PR [#807](https://github.com/tiangolo/typer/pull/807) by [@ivantodorovich](https://github.com/ivantodorovich). diff --git a/typer/__init__.py b/typer/__init__.py index d4ac56d0ba..dd2531263d 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.3" +__version__ = "0.12.4" from shutil import get_terminal_size as get_terminal_size