diff --git a/docs/release-notes.md b/docs/release-notes.md index 9a0434b12e..65878bd35e 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.13.0 + ### Features * ✨ Handle `KeyboardInterrupt` separately from other exceptions. PR [#1039](https://github.com/fastapi/typer/pull/1039) by [@patrick91](https://github.com/patrick91). diff --git a/typer/__init__.py b/typer/__init__.py index 3d84062a76..0ba5475321 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.5" +__version__ = "0.13.0" from shutil import get_terminal_size as get_terminal_size