From 1cd8bfe083a1c9cecb3ffe7472b319f4b9ec333a Mon Sep 17 00:00:00 2001 From: Matthew Anderson Date: Thu, 7 Nov 2024 13:08:34 -0600 Subject: [PATCH] chore: Prepare release 1.4.1 --- CHANGELOG.md | 9 +++++++++ pyproject.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aad1516..8aadc61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ 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.4.1](https://github.com/maxb2/typer-config/releases/tag/1.4.1) - 2024-11-07 + +[Compare with 1.4.0](https://github.com/maxb2/typer-config/compare/1.4.0...1.4.1) + +### Bug Fixes + +- future annotations with custom types (#296) ([eb2f252](https://github.com/maxb2/typer-config/commit/eb2f2524ccd5d62b5b07f4f5580bb9e210af63bb) by Matthew Anderson). Co-authored-by: Matthew Anderson +- drop py3.8 (#287) ([2321757](https://github.com/maxb2/typer-config/commit/232175749581ba8d4f420b28d0133958f280f593) by Matthew Anderson). Co-authored-by: Matthew Anderson + ## [1.4.0](https://github.com/maxb2/typer-config/releases/tag/1.4.0) - 2023-11-17 [Compare with 1.3.0](https://github.com/maxb2/typer-config/compare/1.3.0...1.4.0) diff --git a/pyproject.toml b/pyproject.toml index c66e588..15f7baf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "typer-config" -version = "1.4.0" +version = "1.4.1" description = "Utilities for working with configuration files in typer CLIs. " authors = ["Matt Anderson "] readme = "README.md"