Merge remote-tracking branch 'origin/pr/484'

Conflicts:
	AUTHORS
This commit is contained in:
Ross Lawley 2013-11-29 10:17:15 +00:00
commit 992c91dc0c
3 changed files with 5 additions and 0 deletions

View File

@ -181,3 +181,4 @@ that much better:
* Alexandr Morozov (https://github.com/LK4D4)
* mishudark (https://github.com/mishudark)
* Joe Friedl (https://github.com/grampajoe)
* Daniel Ward (https://github.com/danielward)

View File

@ -4,6 +4,7 @@ Changelog
Changes in 0.8.5
================
- Added app_label to MongoUser (#484)
- Use defaults when host and port are passed as None (#483)
- Fixed distinct casting issue with ListField of EmbeddedDocuments (#470)
- Fixed Django 1.6 sessions (#454, #480)

View File

@ -105,3 +105,6 @@ class MongoUser(models.Model):
"""
objects = MongoUserManager()
class Meta:
app_label = 'mongo_auth'