Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
random-zebra committed Jun 1, 2019
1 parent 333539a commit 2dd5e63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/rpcClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def __init__(self, rpc_protocol, rpc_host, rpc_user, rpc_password):

host, port = rpc_host.split(":")
if rpc_protocol == "https":
self.httpConnection = httplib.HTTPSConnection(host, port, timeout=20, context=ssl._create_unverified_context())
self.httpConnection = httplib.HTTPSConnection(host, port, timeout=20, context=ssl._create_unverified_context())
else:
self.httpConnection = httplib.HTTPConnection(host, port, timeout=20)
self.httpConnection = httplib.HTTPConnection(host, port, timeout=20)

self.conn = AuthServiceProxy(self.rpc_url, timeout=1000, connection=self.httpConnection)

Expand Down
2 changes: 1 addition & 1 deletion src/version.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"number": "0.5.0",
"tag": "alpha.2",
"tag": "alpha.3",
"comments": ["TREZOR pre-release"]
}

0 comments on commit 2dd5e63

Please sign in to comment.