Skip to content

Commit

Permalink
Updated readme. Added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
dfryta committed Feb 11, 2015
1 parent addd264 commit 9356e70
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@ language: python
python:
- "2.6"
- "2.7"
- "3.4"
env:
- DJANGO=1.4.0 DJANGO_SETTINGS_MODULE="django_common.test_settings"
- DJANGO=1.5.1 DJANGO_SETTINGS_MODULE="django_common.test_settings"
- DJANGO=1.6.9 DJANGO_SETTINGS_MODULE="django_common.test_settings"
- DJANGO=1.7.4 DJANGO_SETTINGS_MODULE="django_common.test_settings"
matrix:
exclude:
- python: "2.6"
env: DJANGO=1.7.4
- python: "3.4"
env: DJANGO=1.6.9
install:
- pip install -q Django==$DJANGO --use-mirrors
script:
Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ This open-source app is brought to you by Tivix, Inc. ( http://tivix.com/ )
Changelog
=========

0.6.4
-----
- Added python3 support.

0.6.3
-----
- Changed mimetype to content_type in class JsonReponse to reflect Django 1.7 deprecation.
Expand Down
2 changes: 1 addition & 1 deletion django_common/settings.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.6.3'
VERSION = '0.6.4'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
keywords = 'django',
zip_safe=False,
install_requires=[
'Django>=1.4.0',
'Django>=1.4.2',
'South>=0.7.2'
],
test_suite = 'django_common.tests',
Expand Down

0 comments on commit 9356e70

Please sign in to comment.