From 0905f3cd2c375d46ec50b2eb5a957cda50730dba Mon Sep 17 00:00:00 2001 From: narayana Date: Tue, 28 Feb 2023 13:13:13 +0530 Subject: [PATCH] bug fix --- CHANGELOG.md | 3 +++ README.md | 2 +- lib/plivo/resources/messages.rb | 2 +- lib/plivo/version.rb | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f05fdf7c..16b878cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index b57c3113..9e9a3c36 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/lib/plivo/resources/messages.rb b/lib/plivo/resources/messages.rb index 35863a98..a4b8ab7a 100644 --- a/lib/plivo/resources/messages.rb +++ b/lib/plivo/resources/messages.rb @@ -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 diff --git a/lib/plivo/version.rb b/lib/plivo/version.rb index eabae551..accc4b5f 100644 --- a/lib/plivo/version.rb +++ b/lib/plivo/version.rb @@ -1,3 +1,3 @@ module Plivo - VERSION = "4.37.0".freeze + VERSION = "4.37.1".freeze end