diff --git a/docs/release-notes.md b/docs/release-notes.md index c16dc2c2bb..6783407700 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.15.1 + ### Features * 🗑️ Deprecate `shell_complete` and continue to use `autocompletion` for CLI parameters. PR [#974](https://github.com/fastapi/typer/pull/974) by [@svlandeg](https://github.com/svlandeg). diff --git a/typer/__init__.py b/typer/__init__.py index 2079264c30..a7946d5deb 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.15.0" +__version__ = "0.15.1" from shutil import get_terminal_size as get_terminal_size