diff --git a/README.md b/README.md index badc945..d6ceaba 100644 --- a/README.md +++ b/README.md @@ -341,7 +341,7 @@ Pull requests are encouraged! Donations & Support ---- If you found drfpasswordless useful, consider giving me a follow -[@aaronykng](https://www.twitter.com/aaronykng) on Twitter and +[@localghost](https://www.twitter.com/aaronykng) on Twitter and [@hi.aaron](https://www.instagram.com/hi.aaron) on Instagram. If you'd like to go a step further and are using drfpasswordless in your startup diff --git a/drfpasswordless/__init__.py b/drfpasswordless/__init__.py index e9802b2..8beef42 100644 --- a/drfpasswordless/__init__.py +++ b/drfpasswordless/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- __title__ = 'drfpasswordless' -__version__ = '1.5.7' +__version__ = '1.5.8' __author__ = 'Aaron Ng' __license__ = 'MIT' -__copyright__ = 'Copyright 2020 Aaron Ng' +__copyright__ = 'Copyright 2022 Aaron Ng' # Version synonym VERSION = __version__ diff --git a/drfpasswordless/__version__.py b/drfpasswordless/__version__.py index e3cced8..8efe3d1 100644 --- a/drfpasswordless/__version__.py +++ b/drfpasswordless/__version__.py @@ -1,3 +1,3 @@ -VERSION = (1, 5, 7) +VERSION = (1, 5, 8) __version__ = '.'.join(map(str, VERSION)) diff --git a/setup.py b/setup.py index da4af63..97d27c4 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,8 @@ NAME = 'drfpasswordless' DESCRIPTION = 'Passwordless auth for Django Rest Framework Token Authentication.' URL = 'https://github.com/aaronn/django-rest-framework-passwordless' -EMAIL = 'hi@aaron.ng' -AUTHOR = 'Aaron Ng' +EMAIL = 'email@0xaaron.com' +AUTHOR = 'Aaron N.' REQUIRES_PYTHON = '>=3' VERSION = None