diff --git a/.travis.yml b/.travis.yml index 181f668..e5056e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ matrix: fast_finish: true install: - - pip install Django==$DJANGO_VERSION djangorestframework==3.1.1 + - pip install Django==$DJANGO_VERSION djangorestframework==3.2.3 - pip install coveralls script: coverage run runtests.py diff --git a/README.md b/README.md index d5bc9fd..8e46319 100644 --- a/README.md +++ b/README.md @@ -89,3 +89,10 @@ The `obtain_expiring_auth_token` view works exactly the same as the `obtain_auth * Variable token lifespans. * Possibly change `obtain_expiring_auth_token` to always replace an existing token. (Configurable?) * South Migrations + +## Changelog + + * 0.1.2 + * Changed from deprecated `request.DATA` to `request.data` + * 0.1.1 + * Initial release diff --git a/rest_framework_expiring_authtoken/__init__.py b/rest_framework_expiring_authtoken/__init__.py index a2fa9e6..49a71c4 100644 --- a/rest_framework_expiring_authtoken/__init__.py +++ b/rest_framework_expiring_authtoken/__init__.py @@ -6,4 +6,4 @@ 'views' ] -__version__ = '0.1.1' +__version__ = '0.1.2' diff --git a/setup.py b/setup.py index b9054ea..5242206 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ license='BSD', packages=find_packages(exclude=['tests*']), install_requires=[ - 'djangorestframework>=3.1.1' + 'djangorestframework>=3.2.3' ], test_suite='runtests.run', tests_require=['Django'],