Skip to content

Commit

Permalink
Merge pull request #283 from plivo/SMS-6948-list
Browse files Browse the repository at this point in the history
Update list and get verify session changes for locale
  • Loading branch information
rachana-plivo authored Jul 9, 2024
2 parents 482f301 + ba51187 commit 2778584
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 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.47.3](https://github.com/plivo/plivo-dotnet/tree/v5.47.3) (2024-07-09)
**Feature - Adding support for Locale param in Get and List Session**
- Support for param `locale` in get and list Session API Response

## [5.47.2](https://github.com/plivo/plivo-dotnet/tree/v5.47.2) (2024-06-20)
**Feature - Adding support for Locale param in Create Session**
- Added new request param `locale` in create Session API
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.47.2
PM> Install-Package Plivo -Version 5.47.3
```

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

```
> dotnet add package Plivo --version 5.47.2
> dotnet add package Plivo --version 5.47.3
```

## 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.47.2</ReleaseVersion>
<ReleaseVersion>5.47.3</ReleaseVersion>
<Version />
<Authors>Plivo SDKs Team</Authors>
<Owners>Plivo Inc.</Owners>
Expand Down
2 changes: 1 addition & 1 deletion src/Plivo/Plivo.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<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.47.2</version>
<version>5.47.3</version>
<title>Plivo</title>
<authors>Plivo SDKs Team</authors>
<owners>Plivo, Inc.</owners>
Expand Down
3 changes: 3 additions & 0 deletions src/Plivo/Resource/VerifySession/VerifySession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ public class VerifySession : Resource
[JsonProperty("channel")]
public string Channel { get; set; }

[JsonProperty("locale")]
public string Locale { get; set; }

[JsonProperty("status")]
public string Status { get; set; }

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.47.2";
public const string SdkVersion = "5.47.3";
/// <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.47.2",
"version": "5.47.3",
"publicReleaseRefSpec": [
"^refs/heads/master$",
"^refs/heads/v\\d+(?:\\.\\d+)?$"
Expand Down

0 comments on commit 2778584

Please sign in to comment.