Skip to content

Commit

Permalink
Bugfix and version bump: forgot import in view
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin1024 committed Jul 12, 2024
1 parent 93a619d commit d8a4976
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ When the CSRF validation token doesn't match, django-admin-oauth2 will redirect

## Changelog

- 1.3.3: Bugfix: forgot import in view
- 1.3.2: Fix bug: Don't try to serialize an anonymous user
- 1.3.1: Update setup.py so pypi README docs are formatted
- 1.3.0: Add support for `JSONSerializer`
Expand Down
2 changes: 1 addition & 1 deletion oauthadmin/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from urllib.parse import quote_plus

from django.shortcuts import redirect
from django.http import HttpResponseRedirect
from django.http import HttpResponseRedirect, HttpResponse
from django.core import serializers

from oauthadmin.utils import import_by_path
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='django-admin-oauth2',
version='1.3.2',
version='1.3.3',
description='A django app that replaces the django admin authentication mechanism by deferring to an oauth2 provider',
long_description=README,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit d8a4976

Please sign in to comment.