From eb3d3ac7abd04eef3d26ee2ae88d7b58c4814179 Mon Sep 17 00:00:00 2001 From: Fabian Braun Date: Tue, 23 Apr 2024 08:03:46 +0200 Subject: [PATCH] Chore/prepare release 1.0.2 (#36) --- CHANGELOG.rst | 17 +++++++++++++++++ djangocms_transfer/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 96f073a..1675f8f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,23 @@ Changelog ========= +1.0.2 (2024-02-29) +================== + +Changes +------- + +* make export filenames a bit more unique by @arneb in https://github.com/django-cms/djangocms-transfer/pull/15 +* added customization of export/import data via user defined functions by @wfehr in https://github.com/django-cms/djangocms-transfer/pull/20 +* Fix error on export when getting filename by @wfehr in https://github.com/django-cms/djangocms-transfer/pull/33 +* Improved testing environment and fixed existing errors by @wfehr in https://github.com/django-cms/djangocms-transfer/pull/35 + +New Contributors +---------------- + +* @wfehr made their first contribution in https://github.com/django-cms/djangocms-transfer/pull/20 + + 1.0.1 (2023-03-13) ================== diff --git a/djangocms_transfer/__init__.py b/djangocms_transfer/__init__.py index f18a6c8..8ea4d0e 100644 --- a/djangocms_transfer/__init__.py +++ b/djangocms_transfer/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.1" +__version__ = '1.0.2' default_app_config = "djangocms_transfer.apps.TranferConfig"