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

Commit e747b4a

Browse files
committed
Prepare v0.1.4
1 parent 178fd81 commit e747b4a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: revolut/__init__.py

+1-1
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.4.dev0' # Should be the same in setup.py
12+
__version__ = '0.1.4' # Should be the same in setup.py
1313

1414
API_BASE = "https://api.revolut.com"
1515
_URL_GET_ACCOUNTS = API_BASE + "/user/current/wallet"

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

12-
__version__ = '0.1.4.dev0' # Should match with __init.py__
12+
__version__ = '0.1.4' # Should match with __init.py__
1313
_NAME = 'revolut'
1414
_PACKAGE_LIST = ['revolut', 'revolut_bot']
1515
_URL_GITHUB = 'https://github.com/tducret/revolut-python'
@@ -47,7 +47,7 @@
4747
# ------------------------------------------
4848
# Make sure everything was pushed (with a git status)
4949
# (or git commit --am "Comment" and git push)
50-
# 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
50+
# export VERSION=0.1.4; git tag $VERSION -m "Update X-Client-Version + allow passing a selfie when Third factor authentication is required"; git push --tags
5151

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

0 commit comments

Comments
 (0)