Skip to content

Commit

Permalink
Merge pull request #208 from plivo/bug-fix-messaging-object
Browse files Browse the repository at this point in the history
bug fix on messasging object
  • Loading branch information
narayana-plivo authored Feb 28, 2023
2 parents 25558e5 + 0905f3c commit 91096c1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Change Log
## [4.37.1](https://github.com/plivo/plivo-ruby/tree/v4.37.1) (2023-02-23)
**Bug fix on Messaging object **
-
## [4.37.0](https://github.com/plivo/plivo-ruby/tree/v4.37.0) (2023-02-23)
**Feature - Enhance MDR filtering capabilities **
- Added new fields on MDR object response
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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.37.0'
gem 'plivo', '>= 4.37.1'
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion lib/plivo/resources/messages.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def to_s
units: @units,
tendlc_campaign_id: @tendlc_campaign_id,
destination_country_iso2: @destination_country_iso2,
tendlc_registration_status: @tendlc_registration_status
tendlc_registration_status: @tendlc_registration_status,
requester_ip: @requester_ip
}.to_s
end
Expand Down
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.37.0".freeze
VERSION = "4.37.1".freeze
end

0 comments on commit 91096c1

Please sign in to comment.