From 1f132a5a9f406677e31a80023108e0f8875350c0 Mon Sep 17 00:00:00 2001 From: Iurii Pliner Date: Mon, 11 Nov 2024 08:57:09 +0000 Subject: [PATCH] Bump release --- CHANGELOG.md | 6 ++++++ marshmallow_recipe/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a6a72b..0059815 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.0.43(2024-11-11) + +* [Fix python_requires to be >=3.11](https://github.com/anna-money/marshmallow-recipe/commit/ab1eca29324569dbcc712f589078eee9980f9b10) +* [Switch to StrEnum](https://github.com/anna-money/marshmallow-recipe/commit/e732d5a6c96f3316f7d33d903f15680f83b63fbe) + + ## v0.0.42(2024-11-09) * [Preserve declaration order](https://github.com/anna-money/marshmallow-recipe/pull/164) diff --git a/marshmallow_recipe/__init__.py b/marshmallow_recipe/__init__.py index 5ffa0f5..5072cab 100644 --- a/marshmallow_recipe/__init__.py +++ b/marshmallow_recipe/__init__.py @@ -103,7 +103,7 @@ "get_validation_field_errors", ) -__version__ = "0.0.42" +__version__ = "0.0.43" version = f"{__version__}, Python {sys.version}"