Skip to content

Commit 5901b48

Browse files
committed
Merge branch 'hyperwallet-master'
2 parents e4fa6f8 + 24fdc0f commit 5901b48

4 files changed

Lines changed: 7 additions & 12 deletions

File tree

CHANGELOG.rst

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
Changelog
22
=========
33

4-
1.1.5 (2018-09-05)
5-
------------------
6-
7-
- Added Layer 7 encryption for Hyperwallet client
8-
9-
1.1.4 (2018-08-05)
4+
1.1.4 (current)
105
------------------
116

127
- Added PayPal account endpoint
@@ -16,7 +11,7 @@ Changelog
1611

1712
- Added transfer endpoint
1813

19-
1.1.2 (2018-08-03)
14+
1.1.2 (2018-03-20)
2015
------------------
2116

2217
- Added bank card endpoint

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The MIT License (MIT)
2-
Copyright (c) 2017 Hyperwallet Systems Inc.
2+
Copyright (c) 2018 Hyperwallet Systems Inc.
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@
5151

5252
# General information about the project.
5353
project = u'hyperwallet-sdk'
54-
copyright = u'2016, Dan Harrison'
55-
author = u'Dan Harrison'
54+
copyright = u'2018, Hyperwallet Systems Inc'
55+
author = u'Hyperwallet Systems Inc'
5656

5757
# The version info for the project you're documenting, acts as replacement for
5858
# |version| and |release|, also used in various other places throughout the
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'0.1'
62+
version = u'0.4'
6363
# The full version, including alpha/beta/rc tags.
6464
release = u'0.1'
6565

hyperwallet/utils/apiclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def __init__(self, username, password, server, encryptionData=None):
5454

5555
# The default connection to persist authentication and SSL settings.
5656
defaultSession = requests.Session()
57-
defaultSession.mount(self.server, SSLAdapter(ssl.PROTOCOL_TLSv1_2))
57+
defaultSession.mount(self.server, SSLAdapter())
5858
defaultSession.auth = (self.username, self.password)
5959
defaultSession.headers = self.baseHeaders
6060

0 commit comments

Comments
 (0)