Skip to content

Commit 3b7ede4

Browse files
committed
Fix actions and bump version
2 parents a622ee1 + f7f6bfb commit 3b7ede4

File tree

5 files changed

+24
-7
lines changed

5 files changed

+24
-7
lines changed

.github/workflows/publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,19 @@ name: Upload Python Package
22

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

77
jobs:
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

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)