Skip to content

Commit

Permalink
support for from and to number filter for message
Browse files Browse the repository at this point in the history
  • Loading branch information
narayana-plivo committed Jan 14, 2025
1 parent b1df2e9 commit ac94cb1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

## [4.58.3](https://github.com/plivo/plivo-python/tree/v4.58.3) (2025-01-14)
- Added `from_number` and `to_number` filter support for `list messages` API
-
## [4.58.2](https://github.com/plivo/plivo-python/tree/v4.58.2) (2024-12-16)
- Fixed broken link in README.md

Expand Down
2 changes: 2 additions & 0 deletions plivo/resources/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ def list(self,
message_type=None,
conversation_id=None,
conversation_origin=None,
from_number=None,
to_number=None,
):
return self.client.request(
'GET', ('Message', ),
Expand Down
2 changes: 1 addition & 1 deletion plivo/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = '4.58.2'
__version__ = '4.58.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name='plivo',
version='4.58.2',
version='4.58.3',
description='A Python SDK to make voice calls & send SMS using Plivo and to generate Plivo XML',
long_description=long_description,
url='https://github.com/plivo/plivo-python',
Expand Down

0 comments on commit ac94cb1

Please sign in to comment.