Skip to content

Commit 1c8f710

Browse files
authored
Merge pull request #103 from James1345/develop
release 3.1.5
2 parents 8d708e7 + 441b587 commit 1c8f710

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

Diff for: CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
######
2+
3.1.5
3+
######
4+
- Make AuthTokenAdmin more compatible with big user tables
5+
- Extend docs regarding usage of Token Authentication as single authentication method.
6+
17
######
28
3.1.4
39
######

Diff for: docs/changes.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#Changelog
22

3+
## 3.1.5
4+
- Make AuthTokenAdmin more compatible with big user tables
5+
- Extend docs regarding usage of Token Authentication as single authentication method.
6+
37
## 3.1.4
48
- Fix compability with django-rest-swagger (bad inheritance)
59

Diff for: knox/admin.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
from django.contrib import admin
22
from knox import models
33

4+
45
@admin.register(models.AuthToken)
56
class AuthTokenAdmin(admin.ModelAdmin):
67
list_display = ('digest', 'user', 'created',)
78
fields = ()
9+
raw_id_fields = ('user',)

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# Versions should comply with PEP440. For a discussion on single-sourcing
1717
# the version across setup.py and the project code, see
1818
# https://packaging.python.org/en/latest/single_source_version.html
19-
version='3.1.4',
19+
version='3.1.5',
2020
description='Authentication for django rest framework',
2121
long_description=long_description,
2222

0 commit comments

Comments
 (0)