Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.16] - 2024-08-30
## [3.3.17] - 2024-08-30

- Update get messages

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.16"
version = "3.3.17"
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.16"
__version__ = "3.3.17"
2 changes: 1 addition & 1 deletion telstra/messaging/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ def get_all(
}

messages_get_request = request.Request(
f"{_URL}{querystring.build(limit=limit, offset=offset, filter=filter,starTime=startTime,endTime=endTime,reverse=reverse,direction=direction)}",
f"{_URL}{querystring.build(limit=limit, offset=offset, filter=filter,startTime=startTime,endTime=endTime,reverse=reverse,direction=direction)}",
headers=headers,
method="GET",
)
Expand Down