Minor version bump because I screwed the 1.9.0 commits.
4 files changed, 4 insertions(+), 4 deletions(-)

M CHANGELOG
M README.md
M README.rst
M impersonate/__init__.py
M CHANGELOG +1 -1
@@ 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

          
M README.md +1 -1
@@ 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)

          
M README.rst +1 -1
@@ 4,7 4,7 @@ django-impersonate |nlshield|
 Simple application to allow superusers to "impersonate" other
 non-superuser accounts.
 
-**Version:** 1.9.0
+**Version:** 1.9.1
 
 **Project Links:**
 `Issues <https://todo.code.netlandish.com/~petersanchez/django-impersonate>`__

          
M impersonate/__init__.py +1 -1
@@ 1,5 1,5 @@ 
 # -*- coding: utf-8 -*-
-VERSION = (1, 9, 0, 'final', 0)
+VERSION = (1, 9, 1, 'final', 0)
 
 
 # taken from django-registration