From cabc0c1fe7e1dda9e30f121ffe17e710a1979a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 12 Jul 2022 21:53:01 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=20version=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/release-notes.md | 2 ++ typer/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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