From e7261028e7a73a965101aff2b69143a6addd0303 Mon Sep 17 00:00:00 2001 From: thibdct Date: Wed, 11 Jul 2018 23:38:59 +0200 Subject: [PATCH] New version 0.0.4 : Removed device-id option from CLI tool and implemented function to obtain token --- README.md | 3 ++- revolut/__init__.py | 2 +- setup.py | 5 +++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2e13d15..457b33a 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file +- [x] Create the Docker image +- [ ] Implement the function to get the last transactions \ No newline at end of file diff --git a/revolut/__init__.py b/revolut/__init__.py index a0a5888..f4fdd22 100644 --- a/revolut/__init__.py +++ b/revolut/__init__.py @@ -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/" diff --git a/setup.py b/setup.py index 30f5f17..23f2050 100644 --- a/setup.py +++ b/setup.py @@ -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' @@ -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