From c2214beb8cb6fd25dcdc1eb99a06bcdd9dbf7af5 Mon Sep 17 00:00:00 2001 From: Alexander Regueiro Date: Sun, 6 Nov 2022 02:02:14 +0000 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 452c92e19b..ef63841814 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.6.0 + ### Features * ✨ Make `typer.run()` not add completion scripts by default, it only makes sense in installed apps. PR [#488](https://github.com/tiangolo/typer/pull/488) by [@tiangolo](https://github.com/tiangolo). diff --git a/typer/__init__.py b/typer/__init__.py index 0364f098b4..ad5427e406 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.1" +__version__ = "0.6.0" from shutil import get_terminal_size as get_terminal_size