mirror of
https://github.com/jazzband/django-ddp.git
synced 2026-05-18 20:41:11 +00:00
Merge branch 'release/0.9.5'
This commit is contained in:
commit
c6e3517208
3 changed files with 6 additions and 1 deletions
|
|
@ -1,6 +1,10 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
0.9.5
|
||||
-----
|
||||
* Include array of `permissions` on User publication.
|
||||
|
||||
0.9.4
|
||||
-----
|
||||
* Use mimetypes module to correctly guess mime types for Meteor files
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ class Users(Collection):
|
|||
'username': obj.get_username(),
|
||||
'emails': [],
|
||||
'profile': profile,
|
||||
'permissions': sorted(self.model.get_all_permissions(obj)),
|
||||
}
|
||||
|
||||
# clear out sensitive data
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -5,7 +5,7 @@ from setuptools import setup, find_packages
|
|||
|
||||
setup(
|
||||
name='django-ddp',
|
||||
version='0.9.4',
|
||||
version='0.9.5',
|
||||
description=__doc__,
|
||||
long_description=open('README.rst').read(),
|
||||
author='Tyson Clugg',
|
||||
|
|
|
|||
Loading…
Reference in a new issue