mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-01 18:34:43 +00:00
Fixes missing static folder/files
This commit is contained in:
parent
a23eb5eca9
commit
f46e46887a
3 changed files with 6 additions and 1 deletions
|
|
@ -1,5 +1,9 @@
|
|||
# Changelog
|
||||
|
||||
## 1.8.3
|
||||
|
||||
- Fixes missing static folder/files
|
||||
|
||||
## 1.8.2
|
||||
|
||||
- Added the migration for verbose_name changes
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
include MANIFEST.in README.md AUTHORS.txt LICENSE.txt CHANGELOG.md
|
||||
recursive-include notifications *.py *.html *.txt *.po
|
||||
recursive-include notifications/static *
|
||||
|
|
|
|||
|
|
@ -8,6 +8,6 @@
|
|||
"""
|
||||
|
||||
# PEP 386-compliant version number: N.N[.N]+[{a|b|c|rc}N[.N]+][.postN][.devN]
|
||||
__version__ = '1.8.2'
|
||||
__version__ = '1.8.3'
|
||||
|
||||
default_app_config = 'notifications.apps.Config' # pylint: disable=invalid-name
|
||||
|
|
|
|||
Loading…
Reference in a new issue