Skip to content

Commit 57aafcd

Browse files
committed
Update to version 2.0.0
1 parent 04dec41 commit 57aafcd

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,18 @@ Features
1919
- Token authentication.
2020
- User models in the admin interface include inlines for signup and password reset codes.
2121
- An example project is included and contains example UI templates.
22-
- Version `2.0.0` and above (in progress)
22+
- Version > `2.0.0` (in progress)
2323
- Supports and tested with Python 3.6, 3.7, and 3.8.
2424
- Supports and tested with Django 2.2.8, 3.0, and 3.1.
2525
- Supports and tested with Django REST Framework 3.11.0.
26+
- Version `2.0.0`
27+
- Supports and tested with Python 3.6 and 3.7.
28+
- Supports and tested with Django 2.2.8.
29+
- Supports and tested with Django REST Framework 3.11.0.
2630
- Version `1.10.2`
2731
- Supports and tested with Python 3.6 and 3.7.
28-
- Supports and tested with Django 1.11.17, 2.0, and 2.1.
29-
- Supports and tested with Django REST Framework 3.7.1 through 3.11.0.
32+
- Supports and tested with Django 1.11.17, 2.0, and 2.1.1.
33+
- Supports and tested with Django REST Framework 3.7.1 and 3.11.0.
3034

3135

3236
Installation

authemail/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'django-rest-authemail'
2-
__version__ = '1.10.2'
2+
__version__ = '2.0.0'
33
__author__ = 'Celia Oakley'
44
__copyright__ = 'Copyright (c) 2014-2020 Celia Oakley'
55
__license__ = 'GPLv3'

example_project/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
Django==2.2.8
2-
django-rest-authemail==1.10.2
2+
django-rest-authemail==2.0.0
33
djangorestframework==3.11.0
44
requests>=2.3.0
5-
#wsgiref>=0.1.2

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='django-rest-authemail',
13-
version='1.10.2',
13+
version='2.0.0',
1414
author='Celia Oakley',
1515
author_email='celia.oakley@alumni.stanford.edu',
1616
description='A RESTful API for user signup and authentication using email addresses',
@@ -22,7 +22,7 @@
2222
'django-email-as-username'
2323
],
2424
url='http://github.com/celiao/django-rest-authemail',
25-
download_url='https://github.com/celiao/django-rest-authemail/tarball/1.10.2',
25+
download_url='https://github.com/celiao/django-rest-authemail/tarball/2.0.0',
2626
packages=['authemail'],
2727
include_package_data=True,
2828
long_description=long_description,

0 commit comments

Comments
 (0)