Skip to content

Commit

Permalink
Merge pull request #115 from yangyubo/master
Browse files Browse the repository at this point in the history
Bump version 1.0
  • Loading branch information
yangyubo committed Jan 4, 2016
2 parents d37d073 + 0e8954a commit 1d53771
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
Changelog
=========

1.0
-----

The first major version that requires Django 1.7+.

- Drop support for Django 1.6 and below (@zhang-z)
- Django 1.9 compability (@illing2005)
- Now depends on Django built-in migration facility, "south_migrations" dependence was removed (@zhang-z)
- Make django-notification compatible with django-model-utils >= 2.4 ( #87, #88, #90 ) (@zhang-z)
- Fix a RemovedInDjango110Warning in unittest (@zhang-z)
- Fix pep8 & use setuptools (@areski)
- Fix typo- in doc (@areski, @zhang-z)
- Add app_name in urls.py (@zhang-z)
- Use Django's vendored copy of six (@funkybob)
- Tidy with flake8 (@funkybob)
- Remove custom now() function (@funkybob, @yangyubo)
- notify.send() accepts User or Group (@Evidlo)

0.8.0
-----

Expand All @@ -10,7 +28,7 @@ Changelog
- Class-based classes (@alazaro)
- Fixed urls in tests (@alazaro)
- Added app_label to Notification model in order to fix a Django 1.9 deprecation warning (@Heldroe)
- django-model-utils compatible issue (must >=2.0.3 and <2.4) (@zhangz)
- django-model-utils compatible issue (must >=2.0.3 and <2.4) (@zhang-z)
- Reliable setup.py versioning (@yangyubo)

0.7.1
Expand Down
2 changes: 1 addition & 1 deletion notifications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"""

# PEP 386-compliant version number: N.N[.N]+[{a|b|c|rc}N[.N]+][.postN][.devN]
__version__ = '0.8.0'
__version__ = '1.0'

default_app_config = 'notifications.apps.Config'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@
'django>=1.7',
'django-model-utils>=2.0.3',
'jsonfield>=1.0.3',
'pytz'
],
test_requires=[
'django>=1.7',
'django-model-utils>=2.0.3',
'six>=1.9.0',
'jsonfield>=1.0.3',
'pytz'
],
Expand Down

0 comments on commit 1d53771

Please sign in to comment.