Skip to content

Commit

Permalink
Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
James Ritchie committed Sep 17, 2015
1 parent d2debd8 commit 096016d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -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
2 changes: 1 addition & 1 deletion rest_framework_expiring_authtoken/__init__.py
Expand Up @@ -6,4 +6,4 @@
'views'
]

__version__ = '0.1.1'
__version__ = '0.1.2'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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'],
Expand Down

0 comments on commit 096016d

Please sign in to comment.