Skip to content

Commit

Permalink
Add changelog, and version 0.9.0 upgrade
Browse files Browse the repository at this point in the history
+ Also, add definitions of Django settings keys used in context processor
  • Loading branch information
maxim-kht committed Oct 18, 2016
1 parent 49092a8 commit 596ed42
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -202,13 +202,28 @@ Optional arguments
1. ``--length`` - is the length of the key ``default=50``
2. ``--alphabet`` - is the alphabet to use to generate the key ``default=ascii letters + punctuation symbols``

Django settings keys
--------------------

- DOMAIN_NAME - Domain name, ``"www.example.com"``
- WWW_ROOT - Root website url, ``"https://www.example.com/"``
- IS_DEV - Current environment is development environment
- IS_PROD - Current environment is production environment


This open-source app is brought to you by Tivix, Inc. ( http://tivix.com/ )


Changelog
=========

0.9.0
-----
- Django 1.10 support
- README.txt invalid characters fix
- Add support for custom user model in EmailBackend
- Fixes for DB fields and management commands

0.8.0
-----
- compatability code moved to compat.py
Expand Down
2 changes: 1 addition & 1 deletion django_common/settings.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import print_function, unicode_literals, with_statement, division

VERSION = '0.8.0'
VERSION = '0.9.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
keywords='django',
zip_safe=False,
install_requires=[
'Django>=1.4.2'
'Django>=1.8.0'
],
test_suite='django_common.tests',
include_package_data=True,
Expand Down

0 comments on commit 596ed42

Please sign in to comment.