Skip to content

Commit

Permalink
changelog, minor change and updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
Thumpala Vinay Kumar authored and Sajal Singhal committed Mar 7, 2024
1 parent 754cebb commit 92ea3b2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [5.43.0](https://github.com/plivo/plivo-dotnet/tree/v5.43.0) (2024-03-10)
**Feature - Import Campaign API**
- Added: Import Campaign API

## [5.42.3](https://github.com/plivo/plivo-dotnet/tree/v5.42.3) (2024-03-01)
**Feature - Log Redaction Enhancement**
- Added log attribute in GET and List MDR response
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3
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.3
> dotnet add package Plivo --version 5.43.0
```

## Getting started
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Plivo.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard1.3</TargetFrameworks>
<ReleaseVersion>5.42.3</ReleaseVersion>
<ReleaseVersion>5.43.0</ReleaseVersion>
<Version />
<Authors>Plivo SDKs Team</Authors>
<Owners>Plivo Inc.</Owners>
Expand Down
3 changes: 2 additions & 1 deletion src/Plivo/Plivo.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@
<summary>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</summary>
<description>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</description>
<id>Plivo</id>
<version>5.42.3</version>
<version>5.43.0</version>
<title>Plivo</title>
<authors>Plivo SDKs Team</authors>
<owners>Plivo, Inc.</owners>
<licenseUrl>https://github.com/plivo/plivo-dotnet/blob/master/LICENSE.txt</licenseUrl>
<projectUrl>http://github.com/plivo/plivo-dotnet</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>
* 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.
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Resource/Campaign/Campaign.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class Version
/// <summary>
/// DotNet SDK version
/// </summary>
public const string SdkVersion = "5.42.3";
public const string SdkVersion = "5.43.0";
/// <summary>
/// Plivo API version
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.42.3",
"version": "5.43.0",
"publicReleaseRefSpec": [
"^refs/heads/master$",
"^refs/heads/v\\d+(?:\\.\\d+)?$"
Expand Down

0 comments on commit 92ea3b2

Please sign in to comment.