Skip to content

Commit d844a57

Browse files
committed
Version & Readme
1 parent 053d25a commit d844a57

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

README.md

+16-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Install
5353
```
5454
pipenv install drfpasswordless
5555
```
56-
56+
5757
2. Add Django Rest Framework’s Token Authentication to your Django Rest
5858
Framework project.
5959
@@ -304,12 +304,25 @@ To Do
304304
305305
Pull requests are encouraged!
306306
307+
Donations & Support
308+
----
309+
If you found drfpasswordless useful, consider giving me a follow
310+
[@aaronykng](https://www.twitter.com/aaronykng) on Twitter and
311+
[@hi.aaron](https://www.instagram.com/hi.aaron) on Instagram.
312+
313+
If you'd like to go a step further and are using drfpasswordless in your startup
314+
or business, consider a donation:
315+
316+
- BTC: `3FzSFeKVABL5Adh9Egoxh77gHbtg2kcTPk`
317+
- ETH: `0x13412a79F06A83B107A8833dB209BECbcb700f24`
318+
- Square Cash: `$aaron`
319+
307320
License
308321
-------
309322
310323
The MIT License (MIT)
311324
312-
Copyright (c) 2017 Aaron Ng
325+
Copyright (c) 2018 Aaron Ng
313326
314327
Permission is hereby granted, free of charge, to any person obtaining a copy
315328
of this software and associated documentation files (the "Software"), to deal
@@ -329,4 +342,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
329342
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
330343
SOFTWARE.
331344
332-
[ci-image]: https://travis-ci.org/aaronn/django-rest-framework-passwordless.svg?branch=master
345+
[ci-image]: https://travis-ci.org/aaronn/django-rest-framework-passwordless.svg?branch=master

drfpasswordless/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# -*- coding: utf-8 -*-
22

33
__title__ = 'drfpasswordless'
4-
__version__ = '1.1.5'
4+
__version__ = '1.2.0'
55
__author__ = 'Aaron Ng'
66
__license__ = 'MIT'
7-
__copyright__ = 'Copyright 2017 Aaron Ng'
7+
__copyright__ = 'Copyright 2018 Aaron Ng'
88

99
# Version synonym
1010
VERSION = __version__

drfpasswordless/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION = (1, 1, 5)
1+
VERSION = (1, 2, 0)
22

33
__version__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)