diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 568737f..60ecc4f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -14,6 +14,14 @@ Change Log Unreleased ********** +0.9.4 - 2024-05-16 +****************** + +Fixes +===== + +* Allow to serialize dates as strings in JSON. + 0.9.3 - 2024-05-15 ****************** diff --git a/platform_plugin_aspects/__init__.py b/platform_plugin_aspects/__init__.py index 6ae703c..4391ab8 100644 --- a/platform_plugin_aspects/__init__.py +++ b/platform_plugin_aspects/__init__.py @@ -5,6 +5,6 @@ import os from pathlib import Path -__version__ = "0.9.3" +__version__ = "0.9.4" ROOT_DIRECTORY = Path(os.path.dirname(os.path.abspath(__file__)))