diff --git a/docs/release-notes.md b/docs/release-notes.md index 140c82e793..75f14bea85 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.15.0 + ### Features * ✨ Add support for extending typer apps without passing a name, add commands to the top level. PR [#1037](https://github.com/fastapi/typer/pull/1037) by [@patrick91](https://github.com/patrick91). diff --git a/typer/__init__.py b/typer/__init__.py index fca4e505ea..2079264c30 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.14.0" +__version__ = "0.15.0" from shutil import get_terminal_size as get_terminal_size