diff --git a/AUTHORS.txt b/AUTHORS.txt index b579e0c..57d6b58 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -24,7 +24,7 @@ Chris Beaven Vineet Naik Walter Scheper -Brant Young (https://github.com/brantyoung) +Yang Yubo (https://github.com/yangyubo) Matthew Schinckel (https://github.com/schinckel) Mirat Can Bayrak (https://github.com/miratcan) Konrad Hałas (https://github.com/konradhalas) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 62b9830..4030e96 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,14 @@ Changelog ========== +0.7.0 +------ + +- Add filters and displays to Django model Admin +- Support Django 1.8, compatible with both django-south (django < 1.7) and built-in schema migration (django >= 1.7) +- Compatible with Python 3 +- Test fixtures, and integrated with travis-ci + 0.6.2 ------ diff --git a/LICENSE.txt b/LICENSE.txt index 0fb183d..865c734 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,5 @@ Copyright (c) 2011, Justin Quick -Copyright (c) 2012, Brant Young +Copyright (c) 2015, django-notifications team All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index 51f82a0..90e36a1 100644 --- a/README.rst +++ b/README.rst @@ -1,9 +1,9 @@ -Django Notifications Documentation -=================================== +``django-notifications`` Documentation +======================================= |build-status| |coveralls| -`django-notifications `_ is a GitHub notification alike app for Django, it was derived from `django-activity-stream `_ +`django-notifications `_ is a GitHub notification alike app for Django, it was derived from `django-activity-stream `_ Notifications are actually actions events, which are categorized by four main components. @@ -32,7 +32,7 @@ or get it from source :: - $ git clone https://github.com/brantyoung/django-notifications + $ git clone https://github.com/django-notifications/django-notifications $ cd django-notifications $ python setup.py install @@ -235,6 +235,16 @@ Storing the count in a variable for further processing is advised, such as:: You have {{ unread_count }} unread notifications. {% endif %} + +``django-notifications`` Team +============================== + +Core contributors (in alphabetical order): + +- `Samuel Spencer `_ +- `Yang Yubo `_ +- `zhang-z `_ + .. |build-status| image:: https://travis-ci.org/django-notifications/django-notifications.svg :target: https://travis-ci.org/django-notifications/django-notifications diff --git a/setup.py b/setup.py index 378cfea..6ea0e5e 100644 --- a/setup.py +++ b/setup.py @@ -5,9 +5,9 @@ setup(name='django-notifications-hq', version=__version__, description='GitHub notifications alike app for Django.', long_description=open('README.rst').read(), - author='Brant Young', - author_email='brant.young@gmail.com', - url='http://github.com/brantyoung/django-notifications', + author='django-notifications team', + author_email='yang@yangyubo.com', + url='http://github.com/django-notifications/django-notifications', install_requires=[ 'django>=1.4', 'django-model-utils>=2.0.3',