Skip to content

Commit

Permalink
Version bump to 4.1.0 and update markdowns & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sreyantha-plivo committed Feb 16, 2018
1 parent 361b809 commit 67c9ed8
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 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

## [v4.1.0](https://github.com/plivo/plivo-dotnet/tree/v4.1.0) (2018-02-16)
- Added Address and Identity resources.
- Fixes #50 (NullReferenceException)

## [v4.0.0](https://github.com/plivo/plivo-dotnet/tree/v4.0.0) (2018-01-18)
- Supports v2 signature validation
- Targets .NET Standard 1.3
Expand Down
2 changes: 1 addition & 1 deletion Plivo.sln
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Global
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
description = A .NET SDK to make voice calls & send SMS using Plivo and to generate Plivo XML
version = 4.0.0
version = 4.1.0
EndGlobalSection
EndGlobal
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 4.0.0
PM> Install-Package Plivo -Version 4.1.0
```

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

```
> dotnet add package Plivo --version 4.0.0
> dotnet add package Plivo --version 4.1.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
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard1.3</TargetFramework>
<ReleaseVersion>4.0.0</ReleaseVersion>
<ReleaseVersion>4.1.0</ReleaseVersion>
<Authors>Plivo SDKs Team</Authors>
<Owners>Plivo Inc.</Owners>
<Summary>A .NET SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML</Summary>
Expand Down
3 changes: 2 additions & 1 deletion src/Plivo/Plivo.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>Plivo</id>
<version>4.0.0</version>
<version>4.1.0</version>
<title>Plivo</title>
<authors>Plivo SDKs Team</authors>
<owners>Plivo, Inc.</owners>
Expand All @@ -11,6 +11,7 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A .NET SDK to make voice calls &amp; send SMS using Plivo and to generate Plivo XML</description>
<releaseNotes>
* 4.1.0 Added Address and Identity resources. Fixes unhandled NullReferenceException.
* 4.0.0 Supports v2 signature validation. Targets .NET Standard 1.3
* 4.0.0-beta2 Fix Pricing API interface
* 4.0.0-beta1 Support .NET Core 1.0+ and .NET Framework 4.5+
Expand Down
4 changes: 2 additions & 2 deletions src/Plivo/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ public class Version
/// <summary>
/// DotNet SDK version
/// </summary>
public const string SdkVersion = "4.0.0";
public const string SdkVersion = "4.1.0";

/// <summary>
/// Plivo API version
/// </summary>
public const string ApiVersion = "v1";
}
}
}
2 changes: 1 addition & 1 deletion tests/Plivo.Test/Plivo.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RootNamespace>Plivo.Test</RootNamespace>
<AssemblyName>Plivo.Test</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<ReleaseVersion>4.0.0</ReleaseVersion>
<ReleaseVersion>4.1.0</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down
2 changes: 1 addition & 1 deletion tests_netcore/Plivo.NetCore.Test/Plivo.NetCore.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netcoreapp1.1</TargetFramework>

<IsPackable>false</IsPackable>
<ReleaseVersion>4.0.0</ReleaseVersion>
<ReleaseVersion>4.1.0</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 67c9ed8

Please sign in to comment.