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/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 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