diff --git a/docs/release-notes.md b/docs/release-notes.md index 0000d99..6fb8b4c 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest Changes +## 0.6.0 + This relase adds deep integrations with [Rich](https://rich.readthedocs.io/en/stable/). ✨ `rich` is an optional dependency, you can install it directly or it will be included when you install with: diff --git a/typer/__init__.py b/typer/__init__.py index 4ec470e..450d109 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.5.0" +__version__ = "0.6.0" from shutil import get_terminal_size as get_terminal_size