# HG changeset patch # User Peter Sanchez # Date 1676920851 21600 # Mon Feb 20 13:20:51 2023 -0600 # Node ID 39c1a9bdf46d2d58d034cfd46ae1241573633d50 # Parent 16f9179fbf51115dafaa1e75137b865bc9e8ec2a Minor version bump because I screwed the 1.9.0 commits. diff --git a/CHANGELOG b/CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,7 @@ Changes ------- -1.9.0 (2023-02-20) +1.9.1 (2023-02-20) - Prevent redirect loop when MAX_DURATION is used. Refs ~petersanchez/django-impersonate#67 - Allow OPTIONS requests when READ_ONLY is True. Refs ~petersanchez/django-impersonate#69 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.9.0 +**Version:** 1.9.1 **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.9.0 +**Version:** 1.9.1 **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, 9, 0, 'final', 0) +VERSION = (1, 9, 1, 'final', 0) # taken from django-registration