From 250c63fca446cc6406535b57adfa3b0b5d6467c4 Mon Sep 17 00:00:00 2001 From: James Outterside Date: Thu, 28 Apr 2022 15:23:26 +0100 Subject: [PATCH] Bump to 1.4.2 --- docs/conf.py | 2 +- docs/upgrading.rst | 5 +++++ gdpr_assist/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6d25e9a..894ffdb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "1.4.1" +release = "1.4.2" # -- General configuration --------------------------------------------------- diff --git a/docs/upgrading.rst b/docs/upgrading.rst index b97b03b..5872bc3 100644 --- a/docs/upgrading.rst +++ b/docs/upgrading.rst @@ -106,6 +106,11 @@ query the model ``gdpr_assist.models.PrivacyAnonymised`` instead. Changelog ========= +1.4.2, 2022-04-28 +----------------- + +Fix admin styling issue on person search. + 1.4.1, 2022-02-25 ----------------- diff --git a/gdpr_assist/__init__.py b/gdpr_assist/__init__.py index bcb93a6..72c1616 100644 --- a/gdpr_assist/__init__.py +++ b/gdpr_assist/__init__.py @@ -5,7 +5,7 @@ from .exceptions import AnonymiseError # noqa -__version__ = "1.4.1" +__version__ = "1.4.2" default_app_config = "gdpr_assist.apps.GdprAppConfig" diff --git a/setup.py b/setup.py index 1e72ae7..484d139 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import find_packages, setup -VERSION = "1.4.1" +VERSION = "1.4.2" def read(fname):