diff --git a/docs/release-notes.md b/docs/release-notes.md index 7e88d93..544ae45 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.0.2 + * Add initial version of code, docs, etc. ## 0.0.1 diff --git a/typer/__init__.py b/typer/__init__.py index 1d139cf..de1380e 100644 --- a/typer/__init__.py +++ b/typer/__init__.py @@ -1,6 +1,6 @@ """Typer, an intuitive CLI library based on optional type hints""" -__version__ = "0.0.1" +__version__ = "0.0.2" from click.exceptions import ( # noqa Abort,