From ef5f9fb398eef763292c3448003fb50973349900 Mon Sep 17 00:00:00 2001 From: mohsin-plivo Date: Thu, 16 Mar 2023 15:06:40 +0530 Subject: [PATCH 1/2] SMS-5391: Add replaced_sender in MDR Get and List apis --- lib/plivo/resources/messages.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/plivo/resources/messages.rb b/lib/plivo/resources/messages.rb index 5955e55f..fbbd7f07 100644 --- a/lib/plivo/resources/messages.rb +++ b/lib/plivo/resources/messages.rb @@ -35,7 +35,8 @@ def to_s destination_country_iso2: @destination_country_iso2, tendlc_registration_status: @tendlc_registration_status, requester_ip: @requester_ip, - is_domestic: @is_domestic + is_domestic: @is_domestic, + replaced_sender: @replaced_sender }.to_s end end From e8c22d9b66c69bb06170c84a528d949885c41cc8 Mon Sep 17 00:00:00 2001 From: mohsin-plivo Date: Thu, 20 Apr 2023 18:31:00 +0530 Subject: [PATCH 2/2] Version bump --- CHANGELOG.md | 3 +++ README.md | 5 ++--- lib/plivo/version.rb | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be58bab1..c5405774 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## [4.41.0](https://github.com/plivo/plivo-ruby/tree/v4.41.0) (2023-04-25) +**Adding new attribute - 'replaced_sender' in Get Message and List Message APIs** +- Add `replaced_sender` to the response for the [list all messages API](https://www.plivo.com/docs/sms/api/message/list-all-messages/) and the [get message details API](https://www.plivo.com/docs/sms/api/message#retrieve-a-message) ## [4.40.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-04-11) **Feature - Added New Param 'source_ip' in GetCall and ListCalls** diff --git a/README.md b/README.md index f5a45fdc..da1569e1 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,8 @@ The Plivo Ruby SDK makes it simpler to integrate communications into your Ruby a Add this line to your application's Gemfile: ```ruby - -gem 'plivo', '>= 4.39.0' - +gem 'plivo', '>= 4.41.0' +``` And then execute: diff --git a/lib/plivo/version.rb b/lib/plivo/version.rb index 2d499bd7..c08ae9f5 100644 --- a/lib/plivo/version.rb +++ b/lib/plivo/version.rb @@ -1,3 +1,3 @@ module Plivo - VERSION = "4.40.0".freeze + VERSION = "4.41.0".freeze end