diff --git a/CHANGELOG.md b/CHANGELOG.md index a17a8e5..fe0db7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.0.30(2023-09-25) + +* [Improve validation support: expose ValidationError to raise it from validators, allow to pass a sequence of validators](https://github.com/anna-money/marshmallow-recipe/pull/129) +* [Add meta shortcuts to metadata methods](https://github.com/anna-money/marshmallow-recipe/pull/128) + + ## v0.0.29(2023-09-23) * Allow to use metadata as part of Annotated: [#126](https://github.com/anna-money/marshmallow-recipe/pull/126) and [#127](https://github.com/anna-money/marshmallow-recipe/pull/127). diff --git a/marshmallow_recipe/__init__.py b/marshmallow_recipe/__init__.py index f89a1ab..9310134 100644 --- a/marshmallow_recipe/__init__.py +++ b/marshmallow_recipe/__init__.py @@ -85,7 +85,7 @@ "ValidationFunc", ) -__version__ = "0.0.29" +__version__ = "0.0.30" version = f"{__version__}, Python {sys.version}"