From 1b46c3625d5859ed9e310b699da34daf4003c693 Mon Sep 17 00:00:00 2001 From: Mateusz Sikora Date: Wed, 12 Nov 2014 12:18:12 +0100 Subject: [PATCH] version 0.3.1 --- docs/changelog.rst | 8 ++++++++ docs/configuration.rst | 3 +++ setup.py | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index f54eb25..a51c877 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +0.3.1 +----- + +- added old_password field in PasswordChangeSerializer +- make all endpoints browsable +- removed LoggedInRESTAPIView, LoggedOutRESTAPIView +- fixed minor bugs + 0.3.0 ----- diff --git a/docs/configuration.rst b/docs/configuration.rst index ca296fd..f04d86d 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -31,3 +31,6 @@ Configuration - **REST_SESSION_LOGIN** - Enable session login in Login API view (default: True) + + +- **OLD_PASSWORD_FIELD_ENABLED** - set it to True if you want to have old password verification on password change enpoint (default: False) diff --git a/setup.py b/setup.py index d96674d..b2c36a4 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ f.close() setup( name='django-rest-auth', - version='0.3.0', + version='0.3.1', author='Sumit Chachra', author_email='chachra@tivix.com', url='http://github.com/Tivix/django-rest-auth',