diff --git a/release-notes.md b/release-notes.md index dccbc28..fff899d 100644 --- a/release-notes.md +++ b/release-notes.md @@ -2,6 +2,8 @@ ## Latest Changes +## 0.0.12 + * ✨ Move CI to GitHub Actions, remove dependency on `importlib-metadata`. This would fix use cases that also depend on `importlib-metadata` and could have conflicts, like installing `mkdocs`, as now `typer-cli` no longer depends on `importlib-metadata`. PR [#48](https://github.com/tiangolo/typer-cli/pull/48) by [@tiangolo](https://github.com/tiangolo). ## 0.0.11 diff --git a/typer_cli/__init__.py b/typer_cli/__init__.py index b2f0155..6e2648a 100644 --- a/typer_cli/__init__.py +++ b/typer_cli/__init__.py @@ -1 +1 @@ -__version__ = "0.0.11" +__version__ = "0.0.12"