Skip to content
This repository has been archived by the owner on Jun 2, 2020. It is now read-only.

Commit

Permalink
Add dependencies list to nuspec file.
Browse files Browse the repository at this point in the history
Prepare 3.1.6.1 release.
  • Loading branch information
alexions committed Oct 16, 2019
1 parent c3732c5 commit c86c6e4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed


## [3.1.6.1] - 2019-10-16 (Enhancements)

### Changed

- nuspec file now has all the SDK dependencies


## [3.1.5] - 2019-10-15 (Enhancements / BugFix Release)

### Changed
Expand Down
6 changes: 6 additions & 0 deletions Klarna.Rest/Klarna.Rest.Core/.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,11 @@
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<copyright>Copyright 2018 - 2019 Klarna AB</copyright>
<tags>Klarna Checkout Payments SDK REST Integration library</tags>

<dependencies>
<group>
<dependency id="Newtonsoft.Json" version="11.0.2" />
</group>
</dependencies>
</metadata>
</package>
2 changes: 1 addition & 1 deletion Klarna.Rest/Klarna.Rest.Core/Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class Constants
/// <summary>
/// The current version of .NET SDK library for Klarna Services
/// </summary>
public const string Version = "3.1.5.0";
public const string Version = "3.1.6.1";

/// <summary>
/// The API for the European live environment
Expand Down
4 changes: 2 additions & 2 deletions Klarna.Rest/Klarna.Rest.Core/Klarna.Rest.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>3.1.5</Version>
<Version>3.1.6.1</Version>
<AssemblyName>Klarna.Rest.Core</AssemblyName>
<AssemblyTitle>Klarna Checkout REST .NET SDK</AssemblyTitle>
<OutputType>Library</OutputType>
Expand All @@ -25,7 +25,7 @@
</PropertyGroup>


<ItemGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>

Expand Down

0 comments on commit c86c6e4

Please sign in to comment.