Skip to content

Commit

Permalink
New version 0.0.4 : Removed device-id option from CLI tool and implem…
Browse files Browse the repository at this point in the history
…ented function to obtain token
  • Loading branch information
tducret committed Jul 11, 2018
1 parent e05e5b2 commit e726102
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,5 @@ If you don't have a Revolut token yet, the tool will allow you to obtain one.
- [x] Explain how to use the CLI tool
- [ ] Create a tool to exchange automatically a currency when it grows
- [x] Create the PIP package
- [x] Create the Docker image
- [x] Create the Docker image
- [ ] Implement the function to get the last transactions
2 changes: 1 addition & 1 deletion revolut/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import base64
from urllib.parse import urljoin

__version__ = '0.0.3' # Should be the same in setup.py
__version__ = '0.0.4' # Should be the same in setup.py

_URL_GET_ACCOUNTS = "https://api.revolut.com/user/current/wallet"
_URL_QUOTE = "https://api.revolut.com/quote/"
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Based on http://peterdowns.com/posts/first-time-with-pypi.html

__version__ = '0.0.3' # Should match with __init.py__
__version__ = '0.0.4' # Should match with __init.py__
_NOM_PACKAGE = 'revolut'
_URL_GITHUB = 'https://github.com/tducret/revolut-python'
_DESCRIPTION = 'Package to get account balances and do operations on Revolut'
Expand Down Expand Up @@ -47,7 +47,8 @@
# ------------------------------------------
# Make sure everything was pushed (with a git status)
# (or git commit --am "Comment" and git push)
# git tag 0.0.3 -m "MANIFEST.in was missing :("
# git tag 0.0.4 -m "Removed device-id option from CLI tool \
# and implemented function to obtain token"
# git push --tags

# Do a generation test on the pypi test repository
Expand Down

0 comments on commit e726102

Please sign in to comment.