diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a74a64..798e1d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ Changelog +## v0.1.14 (2023-04-25) +### Fix +* :arrow_up: Update black requirement from ~=23.1 to ~=23.3 ([`988b13f`](https://github.com/cowofevil/pytest-flask-ligand/commit/988b13fa38de51777b2b7d1445f7a1ecf70099d9)) + ## v0.1.13 (2023-04-25) ### Fix * :arrow_up: Update pytest requirement from ~=7.2 to ~=7.3 ([#75](https://github.com/cowofevil/pytest-flask-ligand/issues/75)) ([`d8a000f`](https://github.com/cowofevil/pytest-flask-ligand/commit/d8a000f686375721e7f48eaecfbc7e2d99af1ef5)) diff --git a/pytest_flask_ligand/__init__.py b/pytest_flask_ligand/__init__.py index e414f6a..8cdddce 100644 --- a/pytest_flask_ligand/__init__.py +++ b/pytest_flask_ligand/__init__.py @@ -24,7 +24,7 @@ # ====================================================================================================================== # Globals # ====================================================================================================================== -__version__ = "0.1.13" +__version__ = "0.1.14" DUMMY_ID = str(uuid.UUID("00000000-0000-0000-0000-000000000000")) DUMMY_ETAG = "0000000000000000000000000000000000000000" USER_ID = DUMMY_ID diff --git a/setup.cfg b/setup.cfg index 38a65c1..752cb7c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pytest-flask-ligand -version = 0.1.13 +version = 0.1.14 summary = Pytest fixtures and helper functions to use for testing flask-ligand microservices. description_file = README.rst author = Ryan Gard