# HG changeset patch # User Peter Sanchez # Date 1612549449 28800 # Fri Feb 05 10:24:09 2021 -0800 # Node ID 190c40f80e3b766cbf6bc8dc99b1dbd2a46312f4 # Parent c400cc81c4f6ff9bb0e94fb8485919ae283e08b0 Version bump diff --git a/CHANGELOG b/CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,22 @@ Changes ------- -1.7.0 (2020-25-20) +1.7.3 (2021-02-05) + +Added `impersonator` object to `request.user` + +https://lists.code.netlandish.com/~petersanchez/public-inbox/patches/8 + +1.7.2 (2021-01-04) + +Removing smart quotes from README.rst for edge cases on systems with odd +unicode settings. + +1.7.1 (2020-12-23) + +https://todo.code.netlandish.com/~petersanchez/django-impersonate?search=status%3Aclosed+label%3A%221.7.1%22 + +1.7.0 (2020-11-25) https://todo.code.netlandish.com/~petersanchez/django-impersonate?search=status%3Aclosed+label%3A%221.7%22 diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Simple application to allow superusers to "impersonate" other non-superuser accounts. -**Version:** 1.7.1 +**Version:** 1.7.3 **Project Links:** [Issues][issues] - [Mailing List][pinbox] - [Contributing](#contributing) diff --git a/README.rst b/README.rst --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ Simple application to allow superusers to "impersonate" other non-superuser accounts. -**Version:** 1.7.1 +**Version:** 1.7.3 **Project Links:** `Issues `__ diff --git a/impersonate/__init__.py b/impersonate/__init__.py --- a/impersonate/__init__.py +++ b/impersonate/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -VERSION = (1, 7, 2, 'final', 0) +VERSION = (1, 7, 3, 'final', 0) # taken from django-registration