Skip to content

Commit 0f48a20

Browse files
committed
3.3.17
1 parent 008c107 commit 0f48a20

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [3.3.16] - 2024-08-30
8+
## [3.3.17] - 2024-08-30
99

1010
- Update get messages
1111

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "telstra.messaging"
3-
version = "3.3.16"
3+
version = "3.3.17"
44
readme = "README.md"
55
description = "SDK for the Telstra Messaging API V3 - Beta"
66
license = "Apache-2.0"

telstra/messaging/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Messaging."""
22

3-
__version__ = "3.3.16"
3+
__version__ = "3.3.17"

telstra/messaging/message.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -783,7 +783,7 @@ def get_all(
783783
}
784784

785785
messages_get_request = request.Request(
786-
f"{_URL}{querystring.build(limit=limit, offset=offset, filter=filter,starTime=startTime,endTime=endTime,reverse=reverse,direction=direction)}",
786+
f"{_URL}{querystring.build(limit=limit, offset=offset, filter=filter,startTime=startTime,endTime=endTime,reverse=reverse,direction=direction)}",
787787
headers=headers,
788788
method="GET",
789789
)

0 commit comments

Comments
 (0)