File tree Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Expand file tree Collapse file tree 5 files changed +24
-7
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,19 @@ name: Upload Python Package
22
33on :
44 release :
5- types : [created ]
5+ types : [released ]
66
77jobs :
88 deploy :
99 runs-on : ubuntu-latest
10+
1011 steps :
1112 - uses : actions/checkout@v2
12- - name : Set up Python
13- uses : actions/setup-python@v2.0.2
13+ - name : Set up Python 3.7
14+ uses : actions/setup-python@v2
1415 with :
15- python-version : ' 3.x'
16+ python-version : ' 3.7'
17+
1618 - name : Install dependencies
1719 run : |
1820 python -m pip install --upgrade pip
Original file line number Diff line number Diff line change 11# What's New in Hologram Python SDK
22
3+ ## v0.9.1
4+ 2021-04-30 Hologram < support@hologram.io >
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
4192019-10-28 Hologram < support@hologram.io >
520 * Converted SDK to use Python 3. This version is compatible with Python 3 only
Original file line number Diff line number Diff line change 1313from Hologram .Network import NetworkManager
1414from Hologram .Authentication import *
1515
16- __version__ = '0.9.0 '
16+ __version__ = '0.9.1 '
1717
1818class Cloud :
1919
Original file line number Diff line number Diff 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 '
Original file line number Diff line number Diff line change 1- 0.9.0
1+ 0.9.1
You can’t perform that action at this time.
0 commit comments