Skip to content

Commit 2dd5e63

Browse files
committed
bump version
1 parent 333539a commit 2dd5e63

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/rpcClient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ def __init__(self, rpc_protocol, rpc_host, rpc_user, rpc_password):
4343

4444
host, port = rpc_host.split(":")
4545
if rpc_protocol == "https":
46-
self.httpConnection = httplib.HTTPSConnection(host, port, timeout=20, context=ssl._create_unverified_context())
46+
self.httpConnection = httplib.HTTPSConnection(host, port, timeout=20, context=ssl._create_unverified_context())
4747
else:
48-
self.httpConnection = httplib.HTTPConnection(host, port, timeout=20)
48+
self.httpConnection = httplib.HTTPConnection(host, port, timeout=20)
4949

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

src/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"number": "0.5.0",
3-
"tag": "alpha.2",
3+
"tag": "alpha.3",
44
"comments": ["TREZOR pre-release"]
55
}

0 commit comments

Comments
 (0)