Skip to content

Commit 4c864bb

Browse files
committed
Hologram Python SDK v0.5.26 release
1 parent 9aeaff7 commit 4c864bb

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2017-09-01 Hologram <[email protected]>
2+
* Fixed topic parsing in hologram_send that can cause message body to be
3+
empty.
4+
15
2017-08-31 Hologram <[email protected]>
26
* Updated install script to include libpython2.7-dev as a require dependency.
37
* added better error messages for unsupported operating systems/platforms.

Hologram/Cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from Network import NetworkManager
1515
from Authentication import *
1616

17-
__version__ = '0.5.25'
17+
__version__ = '0.5.26'
1818

1919
class Cloud(object):
2020

scripts/hologram_send.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def parse_cloud_args(parser):
5656
help='Time period for each message send')
5757
parser.add_argument('--timeout', type=int, default=DEFAULT_TIMEOUT, nargs='?',
5858
help='The period in seconds before the socket closes if it doesn\'t receive a response')
59-
parser.add_argument('-t', '--topic', nargs = '*',
59+
parser.add_argument('-t', '--topic', nargs = '?', action='append',
6060
help='Topics for the message (optional)')
6161

6262
# EFFECTS: Parses the send sms options. Sets the default command_selected option

tests/MessageMode/test_Cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ def test_invalid_send_sms(self):
4040
def test_sdk_version(self):
4141
cloud = Cloud(None, send_host = '127.0.0.1', send_port = 9999)
4242

43-
assert cloud.version == '0.5.25'
43+
assert cloud.version == '0.5.26'

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.25
1+
0.5.26

0 commit comments

Comments
 (0)