diff --git a/CHANGELOG.md b/CHANGELOG.md index ddaeceb..fced97d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## v5.0.1 - 2025-01-29 +* Added `handle_errors_async` to exported list from base package + ## v5.0.0 - 2025-01-29 * Dropped support for Python 3.8 * Updated some dependencies diff --git a/buzz/__init__.py b/buzz/__init__.py index 2ff40eb..73eb500 100644 --- a/buzz/__init__.py +++ b/buzz/__init__.py @@ -5,6 +5,7 @@ enforce_defined, get_traceback, handle_errors, + handle_errors_async, reformat_exception, require_condition, ) @@ -14,6 +15,7 @@ "Buzz", "check_expressions", "handle_errors", + "handle_errors_async", "require_condition", "enforce_defined", "reformat_exception", diff --git a/pyproject.toml b/pyproject.toml index af0c560..0ce41a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "py-buzz" -version = "5.0.0" +version = "5.0.1" description = "\"That's not flying, it's falling with style\": Exceptions with extras" authors = ["Tucker Beck "] license = "MIT"