From 4e53a1a4c99691d2db3e0cb5bbdc2d7d6764155e Mon Sep 17 00:00:00 2001 From: Thumpala Vinay Kumar Date: Wed, 21 Feb 2024 18:06:49 +0530 Subject: [PATCH] changelog, minor change and updated version --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- src/Plivo/Plivo.csproj | 2 +- src/Plivo/Plivo.nuspec | 3 ++- src/Plivo/Resource/Campaign/Campaign.cs | 2 +- src/Plivo/Version.cs | 2 +- version.json | 2 +- 7 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f5cff40..fad3cd6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [5.43.0](https://github.com/plivo/plivo-dotnet/tree/v5.43.0) (2024-02-21) +**Feature - Import Campaign API** +- Added: Import Campaign API + ## [5.42.2](https://github.com/plivo/plivo-dotnet/tree/v5.42.2) (2024-01-25) **Feature - added field in profile apis** - Added new field `alt_business_id` for POST create Profile, GET List Profiles, GET Profiles SDKs diff --git a/README.md b/README.md index d9813224..59f0c5ba 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ You can install this SDK either by referencing the .dll file or using NuGet. Use the following line to install the latest SDK using the NuGet CLI. ``` -PM> Install-Package Plivo -Version 5.42.2 +PM> Install-Package Plivo -Version 5.43.0 ``` You can also use the .NET CLI to install this package as follows ``` -> dotnet add package Plivo --version 5.42.2 +> dotnet add package Plivo --version 5.43.0 ``` ## Getting started diff --git a/src/Plivo/Plivo.csproj b/src/Plivo/Plivo.csproj index 29c02a4f..4efce50b 100644 --- a/src/Plivo/Plivo.csproj +++ b/src/Plivo/Plivo.csproj @@ -1,7 +1,7 @@ netstandard2.0;netstandard1.3 - 5.42.2 + 5.43.0 Plivo SDKs Team Plivo Inc. diff --git a/src/Plivo/Plivo.nuspec b/src/Plivo/Plivo.nuspec index 6774e02f..ededdd38 100644 --- a/src/Plivo/Plivo.nuspec +++ b/src/Plivo/Plivo.nuspec @@ -4,7 +4,7 @@ A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML Plivo - 5.42.2 + 5.43.0 Plivo Plivo SDKs Team Plivo, Inc. @@ -12,6 +12,7 @@ http://github.com/plivo/plivo-dotnet false + * 5.43.0 Added Import Campaign API * 5.42.0 Added Params `vertical`, `campaign_alias` for GET and LIST Campaigns. * 5.41.1 Support Params `from_number` and `to_number` for LIST Message. * 5.41.0 Added New Params `error_code`, `error_reason` for GET and LIST Campaign. diff --git a/src/Plivo/Resource/Campaign/Campaign.cs b/src/Plivo/Resource/Campaign/Campaign.cs index 10e4ece5..ba73f893 100644 --- a/src/Plivo/Resource/Campaign/Campaign.cs +++ b/src/Plivo/Resource/Campaign/Campaign.cs @@ -179,7 +179,7 @@ public class ImportCampaign: Resource public new string CampaignId {get; set;} [JsonProperty("message")] - public new string Messgae {get; set;} + public new string Message {get; set;} public override string ToString() diff --git a/src/Plivo/Version.cs b/src/Plivo/Version.cs index 9120e790..4e807175 100644 --- a/src/Plivo/Version.cs +++ b/src/Plivo/Version.cs @@ -10,7 +10,7 @@ public class Version /// /// DotNet SDK version /// - public const string SdkVersion = "5.42.2"; + public const string SdkVersion = "5.43.0"; /// /// Plivo API version /// diff --git a/version.json b/version.json index cf85d3a9..c56d49bf 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "version": "5.42.2", + "version": "5.43.0", "publicReleaseRefSpec": [ "^refs/heads/master$", "^refs/heads/v\\d+(?:\\.\\d+)?$"