Skip to content

Commit

Permalink
release 3.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanganderson committed May 9, 2024
1 parent d82e911 commit ffbc7d8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.3.4] - 2024-05-09
## [3.3.5] - 2024-05-10

- Update actions.yaml
- Update scope for access token issue
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ from telstra.messaging import message

message.send(
to="+61412345678",
from_="privateNumber",
from_="+61412345678",
message_content="Hello from Python Messaging SDK!"
)
```
Expand Down Expand Up @@ -420,14 +420,14 @@ from telstra.messaging import message

message.send(
to="+61412345678",
from_="privateNumber",
from_="+61412345678",
message_content="Hello from Python Messaging SDK!"
)

# Send an MMS
message.send(
to="+61412345678",
from_="privateNumber",
from_="+61412345678",
multimedia=[
message.Multimedia(
type="image/jpeg",
Expand Down Expand Up @@ -487,7 +487,7 @@ from telstra.messaging import message

sent_message = message.send(
to="+61412345678",
from_="privateNumber",
from_="+61412345678",
message_content="Hello from Python Messaging SDK!"
)
message = message.get(message_id = sent_message.message_id)
Expand Down Expand Up @@ -594,7 +594,7 @@ from telstra.messaging import message
message.update(
message_id="8540d774-4863-4d2b-b788-4ecb19412e85",
to="+61412345678",
from_="privateNumber",
from_="+61412345678",
message_content="Hello from Python Messaging SDK!"
)
```
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "telstra.messaging"
version = "3.3.4"
version = "3.3.5"
readme = "README.md"
description = "SDK for the Telstra Messaging API V3 - Beta"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion telstra/messaging/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Messaging."""

__version__ = "3.3.4"
__version__ = "3.3.5"

0 comments on commit ffbc7d8

Please sign in to comment.