Merge branch 'release/0.1.2' into production
* release/0.1.2: bump version, update changelog update dependencies update to Django 1.7.1 remove unnecessary dependency on South add project page link
This commit is contained in:
commit
a05fbb09db
6 changed files with 21 additions and 23 deletions
|
@ -9,3 +9,5 @@ customer management at `Jan Dittberner IT-Consulting & -Solutions
|
||||||
<http://www.gnuviech-server.de>`_.
|
<http://www.gnuviech-server.de>`_.
|
||||||
|
|
||||||
Read the :doc:`Installation instructions <install>` to get started locally.
|
Read the :doc:`Installation instructions <install>` to get started locally.
|
||||||
|
|
||||||
|
The project page for gvaldap is at http://dev.gnuviech-server.de/gvaldap.
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
* :release:`0.1.2 <2014-12-17>`
|
||||||
|
* :support:`-` update Django and other dependencies
|
||||||
|
|
||||||
* :release:`0.1.1 <2014-05-31>`
|
* :release:`0.1.1 <2014-05-31>`
|
||||||
* :support:`-` improve production settings
|
* :support:`-` improve production settings
|
||||||
- no custom cache and database
|
- no custom cache and database
|
||||||
|
|
|
@ -57,9 +57,9 @@ copyright = u'2014, Jan Dittberner'
|
||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '0.1'
|
version = '0.1.2'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.1'
|
release = '0.1.2'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -207,6 +207,11 @@ ROOT_URLCONF = '%s.urls' % SITE_NAME
|
||||||
########## END URL CONFIGURATION
|
########## END URL CONFIGURATION
|
||||||
|
|
||||||
|
|
||||||
|
########## TEST RUNNER CONFIGURATION
|
||||||
|
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
|
||||||
|
########## END TEST RUNNER CONFIGURATION
|
||||||
|
|
||||||
|
|
||||||
########## APP CONFIGURATION
|
########## APP CONFIGURATION
|
||||||
DJANGO_APPS = (
|
DJANGO_APPS = (
|
||||||
# Default Django apps:
|
# Default Django apps:
|
||||||
|
@ -281,17 +286,6 @@ USER_BASE_DN = get_env_setting('GVALDAP_BASEDN_USER')
|
||||||
########## END LDAP SETTINGS
|
########## END LDAP SETTINGS
|
||||||
|
|
||||||
|
|
||||||
########## SOUTH CONFIGURATION
|
|
||||||
# See: http://south.readthedocs.org/en/latest/installation.html#configuring-your-django-installation
|
|
||||||
INSTALLED_APPS += (
|
|
||||||
# Database migration helpers:
|
|
||||||
'south',
|
|
||||||
)
|
|
||||||
# Don't need to use South when setting up a test database.
|
|
||||||
SOUTH_TESTS_MIGRATE = False
|
|
||||||
########## END SOUTH CONFIGURATION
|
|
||||||
|
|
||||||
|
|
||||||
########## CELERY CONFIGURATION
|
########## CELERY CONFIGURATION
|
||||||
BROKER_URL = get_env_setting('GVALDAP_BROKER_URL')
|
BROKER_URL = get_env_setting('GVALDAP_BROKER_URL')
|
||||||
CELERY_RESULT_BACKEND = 'amqp'
|
CELERY_RESULT_BACKEND = 'amqp'
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
Django==1.6.5
|
Django==1.7.1
|
||||||
django-ldapdb==0.3.2
|
django-ldapdb==0.3.2
|
||||||
bpython==0.13
|
bpython==0.13.1
|
||||||
django-braces==1.4.0
|
django-braces==1.4.0
|
||||||
django-model-utils==2.0.3
|
django-model-utils==2.2
|
||||||
logutils==0.3.3
|
logutils==0.3.3
|
||||||
South==0.8.4
|
celery==3.1.17
|
||||||
celery==3.1.11
|
|
||||||
passlib==1.6.2
|
passlib==1.6.2
|
||||||
pyaml==14.05.7
|
pyaml==14.12.10
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Local development dependencies go here
|
# Local development dependencies go here
|
||||||
-r base.txt
|
-r base.txt
|
||||||
coverage==3.7.1
|
coverage==3.7.1
|
||||||
django-debug-toolbar==1.2.1
|
django-debug-toolbar==1.2.2
|
||||||
Sphinx==1.2.2
|
Sphinx==1.2.3
|
||||||
sqlparse==0.1.11
|
sqlparse==0.1.14
|
||||||
releases==0.6.1
|
releases==0.7.0
|
||||||
|
|
Loading…
Reference in a new issue