Skip to content
This repository was archived by the owner on Sep 9, 2022. It is now read-only.

Commit 2423802

Browse files
committed
Create version 0.1.4.dev0
1 parent 0874a27 commit 2423802

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

revolut/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import requests
1010
from urllib.parse import urljoin
1111

12-
__version__ = '0.1.2' # Should be the same in setup.py
12+
__version__ = '0.1.4.dev0' # Should be the same in setup.py
1313

1414
_URL_GET_ACCOUNTS = "https://api.revolut.com/user/current/wallet"
1515
_URL_GET_TRANSACTIONS = 'https://api.revolut.com/user/current/transactions'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

10-
__version__ = '0.1.2' # Should match with __init.py__
10+
__version__ = '0.1.4.dev0' # Should match with __init.py__
1111
_NAME = 'revolut'
1212
_PACKAGE_LIST = ['revolut', 'revolut_bot']
1313
_URL_GITHUB = 'https://github.com/tducret/revolut-python'
@@ -48,7 +48,7 @@
4848
# ------------------------------------------
4949
# Make sure everything was pushed (with a git status)
5050
# (or git commit --am "Comment" and git push)
51-
# export VERSION=0.1.2; git tag $VERSION -m "Fix timestamp in transactions (in ms instead of seconds). Thanks @Ludo444"; git push --tags
51+
# export VERSION=0.1.4.dev0; git tag $VERSION -m "Update X-Client-Version + raise error when requiring Third factor authentication + print extra tips to the CLI user when creating the token"; git push --tags
5252

5353
# If you need to delete a tag
5454
# git push --delete origin $VERSION; git tag -d $VERSION

0 commit comments

Comments
 (0)