Skip to content

Commit 2778584

Browse files
Merge pull request #283 from plivo/SMS-6948-list
Update list and get verify session changes for locale
2 parents 482f301 + ba51187 commit 2778584

File tree

7 files changed

+13
-6
lines changed

7 files changed

+13
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [5.47.3](https://github.com/plivo/plivo-dotnet/tree/v5.47.3) (2024-07-09)
4+
**Feature - Adding support for Locale param in Get and List Session**
5+
- Support for param `locale` in get and list Session API Response
6+
37
## [5.47.2](https://github.com/plivo/plivo-dotnet/tree/v5.47.2) (2024-06-20)
48
**Feature - Adding support for Locale param in Create Session**
59
- Added new request param `locale` in create Session API

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ You can install this SDK either by referencing the .dll file or using NuGet.
1212
Use the following line to install the latest SDK using the NuGet CLI.
1313

1414
```
15-
PM> Install-Package Plivo -Version 5.47.2
15+
PM> Install-Package Plivo -Version 5.47.3
1616
```
1717

1818
You can also use the .NET CLI to install this package as follows
1919

2020
```
21-
> dotnet add package Plivo --version 5.47.2
21+
> dotnet add package Plivo --version 5.47.3
2222
```
2323

2424
## Getting started

src/Plivo/Plivo.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;netstandard1.3</TargetFrameworks>
4-
<ReleaseVersion>5.47.2</ReleaseVersion>
4+
<ReleaseVersion>5.47.3</ReleaseVersion>
55
<Version />
66
<Authors>Plivo SDKs Team</Authors>
77
<Owners>Plivo Inc.</Owners>

src/Plivo/Plivo.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<summary>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</summary>
55
<description>A .NET SDK to make voice calls and send SMS using Plivo and to generate Plivo XML</description>
66
<id>Plivo</id>
7-
<version>5.47.2</version>
7+
<version>5.47.3</version>
88
<title>Plivo</title>
99
<authors>Plivo SDKs Team</authors>
1010
<owners>Plivo, Inc.</owners>

src/Plivo/Resource/VerifySession/VerifySession.cs

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ public class VerifySession : Resource
5353
[JsonProperty("channel")]
5454
public string Channel { get; set; }
5555

56+
[JsonProperty("locale")]
57+
public string Locale { get; set; }
58+
5659
[JsonProperty("status")]
5760
public string Status { get; set; }
5861

src/Plivo/Version.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class Version
1010
/// <summary>
1111
/// DotNet SDK version
1212
/// </summary>
13-
public const string SdkVersion = "5.47.2";
13+
public const string SdkVersion = "5.47.3";
1414
/// <summary>
1515
/// Plivo API version
1616
/// </summary>

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.47.2",
2+
"version": "5.47.3",
33
"publicReleaseRefSpec": [
44
"^refs/heads/master$",
55
"^refs/heads/v\\d+(?:\\.\\d+)?$"

0 commit comments

Comments
 (0)