From 5728b2a22889a012678c4f198b24717b5f16a65d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 23 Mar 2024 12:02:27 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=20version=200.9.3?= 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 2024752189..4beb87f293 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest Changes +## 0.9.3 + ### Fixes * 🐛 Fix evaluating stringified annotations in Python 3.10 (also `from __future__ import annotations`). PR [#721](https://github.com/tiangolo/typer/pull/721) by [@heckad](https://github.com/heckad). diff --git a/typer/__init__.py b/typer/__init__.py index bd11da49c0..7fd9d26e5d 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.9.2" +__version__ = "0.9.3" from shutil import get_terminal_size as get_terminal_size