Skip to content

Commit aa6d04e

Browse files
committed
Update to version 2.0.1
1 parent 57aafcd commit aa6d04e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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__ = '2.0.0'
2+
__version__ = '2.0.1'
33
__author__ = 'Celia Oakley'
44
__copyright__ = 'Copyright (c) 2014-2020 Celia Oakley'
55
__license__ = 'GPLv3'

example_project/requirements.txt

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

setup.py

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

1111
setup(
1212
name='django-rest-authemail',
13-
version='2.0.0',
13+
version='2.0.1',
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,14 +22,14 @@
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/2.0.0',
25+
download_url='https://github.com/celiao/django-rest-authemail/tarball/2.0.1',
2626
packages=['authemail'],
2727
include_package_data=True,
2828
long_description=long_description,
2929
long_description_content_type="text/markdown",
3030
install_requires=[
31-
'Django>=1.11.17,<=2.1.1',
32-
'djangorestframework>=3.7.1,<=3.11.0',
31+
'Django==2.2.8',
32+
'djangorestframework==3.11.0',
3333
'requests>=2.3.0',
3434
],
3535
classifiers=[

0 commit comments

Comments
 (0)