Skip to content

Commit 8679f05

Browse files
committed
bump version
1 parent 38924d5 commit 8679f05

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Upload Python Package
22

33
on:
44
release:
5-
types: [created]
5+
types: [published]
66

77
jobs:
88
deploy:

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# What's New in Hologram Python SDK
22

3+
## v0.9.1
4+
2021-04-30 Hologram <[email protected]>
5+
includes the following bug fixes
6+
* PPP process is waited on for termination
7+
* SMS parser doesn't break for non SMS-RECEIVE messages
8+
* Add chunking for messages over 512 bytes long
9+
* Install script checks for python versions >= 3.7
10+
* Fix bug in disconnect (thanks @akumlehn )
11+
* Send AT Commands from the CLI
12+
* Fix PPP errors related to routing and reconnection
13+
* BG96 and E372 Modules (thanks @HectorMendez)
14+
* AT sockets are renabled after PPP sessions
15+
* fix bug in return code as ascii ordinal value instead of int
16+
17+
318
## v0.9.0
419
2019-10-28 Hologram <[email protected]>
520
* Converted SDK to use Python 3. This version is compatible with Python 3 only

Hologram/Cloud.py

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

16-
__version__ = '0.9.0'
16+
__version__ = '0.9.1'
1717

1818
class Cloud:
1919

tests/MessageMode/test_Cloud.py

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

51-
assert cloud.version == '0.9.0'
51+
assert cloud.version == '0.9.1'

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.0
1+
0.9.1

0 commit comments

Comments
 (0)