From 2c0528cd4327ab5bf2ec05b3e3d8e38674e99ae1 Mon Sep 17 00:00:00 2001 From: Danny Tiesling Date: Wed, 22 May 2024 15:01:16 -0700 Subject: [PATCH] chore(main): release 0.3.1 --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/flask_muck/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebf329d..a77b2f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.3.1](https://github.com/dtiesling/flask-muck/compare/v0.3.0...v0.3.1) (2024-05-22) + + +### Documentation + +* add more information to "Contributing" section of the README.md. ([faa38da](https://github.com/dtiesling/flask-muck/commit/faa38da1445724c85db08f53767712686c481600)) +* updates and adds to examples folder. ([#64](https://github.com/dtiesling/flask-muck/issues/64)) ([530a9f3](https://github.com/dtiesling/flask-muck/commit/530a9f37032ecc6951dea2c18f9fb3f09ae72302)) + ## [0.3.0](https://github.com/dtiesling/flask-muck/compare/v0.2.0...v0.3.0) (2024-01-28) diff --git a/pyproject.toml b/pyproject.toml index 63d6779..27555a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flask-muck" -version = "0.3.0" +version = "0.3.1" authors = [ { name="Daniel Tiesling", email="tiesling@gmail.com" }, ] diff --git a/src/flask_muck/__init__.py b/src/flask_muck/__init__.py index fcf2adc..6b08f59 100644 --- a/src/flask_muck/__init__.py +++ b/src/flask_muck/__init__.py @@ -2,7 +2,7 @@ from .callback import FlaskMuckCallback from .extension import FlaskMuck -__version__ = "0.3.0" +__version__ = "0.3.1" __all__ = [ "FlaskMuck",