diff --git a/CHANGELOG.md b/CHANGELOG.md index 6602512..28e65d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.0.1](https://github.com/maxb2/typer-config/releases/tag/1.0.1) - 2023-08-23 + +[Compare with 1.0.0](https://github.com/maxb2/typer-config/compare/1.0.0...1.0.1) + +### Bug Fixes + +- add py.typed so mypy will use our annotations ([ac56f1c](https://github.com/maxb2/typer-config/commit/ac56f1c02f5e549cd1713f4eb3c7d147a139b5ab) by Matt Anderson). + ## [1.0.0](https://github.com/maxb2/typer-config/releases/tag/1.0.0) - 2023-07-19 [Compare with 0.6.1](https://github.com/maxb2/typer-config/compare/0.6.1...1.0.0) diff --git a/pyproject.toml b/pyproject.toml index ca4f188..f834dac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "typer-config" -version = "1.0.0" +version = "1.0.1" description = "Utilities for working with configuration files in typer CLIs. " authors = ["Matt Anderson "] readme = "README.md"