diff --git a/docs/release-notes.md b/docs/release-notes.md index 85e51e8..1382806 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,5 +1,7 @@ ## Latest changes +## 0.0.7 + * Add docs for [*CLI parameter* types](https://typer.tiangolo.com/tutorial/parameter-types/). Includes tests and file classes refactor. PR [#17](https://github.com/tiangolo/typer/pull/17). * Add tests for completion. PR [#15](https://github.com/tiangolo/typer/pull/15) and [#16](https://github.com/tiangolo/typer/pull/16). diff --git a/typer/__init__.py b/typer/__init__.py index 2cac75b..48444e6 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.0.6" +__version__ = "0.0.7" from click.exceptions import Abort, Exit # noqa from click.termui import ( # noqa