diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 95e9fd596..9cd95b7d2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,15 @@ are used for versioning (schema follows below): 0.3.4 to 0.4). - All backwards incompatible changes are mentioned in this document. +0.19.8 +------ +2023-01-30 + +- Method + `fobi.contrib.plugins.form_handlers.db_store.base.DBStoreHandlerPlugin.run` + now returns created + `fobi.contrib.plugins.form_handlers.db_store.models.SavedFormDataEntry`. + 0.19.7 ------ 2022-12-21 diff --git a/setup.py b/setup.py index da97f384d..fb89beac0 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.version import LooseVersion from setuptools import setup, find_packages -version = "0.19.7" +version = "0.19.8" # *************************************************************************** # ************************** Django version ********************************* diff --git a/src/fobi/__init__.py b/src/fobi/__init__.py index 8b783cfc0..bef951301 100644 --- a/src/fobi/__init__.py +++ b/src/fobi/__init__.py @@ -1,5 +1,5 @@ __title__ = "django-fobi" -__version__ = "0.19.7" +__version__ = "0.19.8" __author__ = "Artur Barseghyan " __copyright__ = "2014-2022 Artur Barseghyan" __license__ = "GPL 2.0/LGPL 2.1"