Skip to content

Commit

Permalink
Merge pull request #213 from plivo/SMS-5391
Browse files Browse the repository at this point in the history
SMS-5391: Add replaced_sender in MDR Get and List apis
  • Loading branch information
narayana-plivo authored May 3, 2023
2 parents 05dd7a0 + e8c22d9 commit 33fc21e
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:

3 changes: 2 additions & 1 deletion lib/plivo/resources/messages.rb
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion lib/plivo/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Plivo
VERSION = "4.40.0".freeze
VERSION = "4.41.0".freeze
end

0 comments on commit 33fc21e

Please sign in to comment.