diff --git a/docs/release-notes.md b/docs/release-notes.md index f62adca870..8ce516375f 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,8 @@ ## Latest Changes + +## 0.9.0 + ### Features * ✨ Add support for PEP-593 `Annotated` for specifying options and arguments. Initial PR [#584](https://github.com/tiangolo/typer/pull/584) by [@ryangalamb](https://github.com/ryangalamb). diff --git a/typer/__init__.py b/typer/__init__.py index 1f95b17210..3a0c924db3 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.8.0" +__version__ = "0.9.0" from shutil import get_terminal_size as get_terminal_size