Skip to content

Commit

Permalink
Bump to v2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Mar 22, 2023
1 parent a6b044a commit d9de08f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment:


## [Unreleased]

## [2.7.0] - 2023-03-22
### Added
- picture and pictureType parameters to Workspace.update method
- rules and metadata attribute to Transfer resource
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,30 +73,30 @@ Given a version number MAJOR.MINOR.PATCH, increment:

## 1. Install our SDK

StarkBank`s .NET SDK is available on NuGet as starkbank 2.6.4.
StarkBank`s .NET SDK is available on NuGet as starkbank 2.7.0.

1.1 To install the Package Manager:

```sh
Install-Package starkbank -Version 2.6.4
Install-Package starkbank -Version 2.7.0
```

1.2 To install the .NET CLI:

```sh
dotnet add package starkbank --version 2.6.4
dotnet add package starkbank --version 2.7.0
```

1.3 To install by PackageReference:

```sh
<PackageReference Include="starkbank" Version="2.6.4" />
<PackageReference Include="starkbank" Version="2.7.0" />
```

1.4 To install with Paket CLI:

```sh
paket add starkbank --version 2.6.4
paket add starkbank --version 2.7.0
```

## 2. Create your Private and Public Keys
Expand Down
2 changes: 1 addition & 1 deletion StarkBank/StarkBank.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ Global
$0.StandardHeader = $2
$0.VersionControlPolicy = $3
description = SDK to facilitate .NET integrations with Stark Bank
version = 2.6.4
version = 2.7.0
EndGlobalSection
EndGlobal
1 change: 0 additions & 1 deletion StarkBank/StarkBank/DynamicBrcode/DynamicBrcode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Linq;
using System.Collections.Generic;
using StarkBank.Utils;
using System.Reflection.Metadata;


namespace StarkBank
Expand Down
13 changes: 6 additions & 7 deletions StarkBank/StarkBank/StarkBank.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@
<Summary>SDK to facilitate C# (.NET) integrations with the Stark Bank API</Summary>
<AssemblyTitle>StarkBank</AssemblyTitle>
<AssemblyName>StarkBank</AssemblyName>
<VersionPrefix>2.6.4</VersionPrefix>
<Version>2.6.4</Version>
<ReleaseVersion>2.6.4</ReleaseVersion>
<PackageVersion>2.6.4</PackageVersion>
<VersionPrefix>2.7.0</VersionPrefix>
<Version>2.7.0</Version>
<ReleaseVersion>2.7.0</ReleaseVersion>
<PackageVersion>2.7.0</PackageVersion>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageId>starkbank</PackageId>
<PackageTags>starkbank;stark;bank;openbanking;open-banking</PackageTags>
<PackageIconUrl>https://dka575ofm4ao0.cloudfront.net/pages-transactional_logos/retina/135476/logo-white-1.png</PackageIconUrl>
<!-- <PackageIcon>icon.png</PackageIcon> -->
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/starkbank/sdk-dotnet</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
Expand Down Expand Up @@ -63,6 +62,6 @@
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" PackagePath="" />
<!-- <None Include="icon.png" Pack="true" Visible="false" PackagePath="" /> -->
<None Include="icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion StarkBank/StarkBank/Utils/Request.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ internal static class Request
private static HttpClient makeClient()
{
HttpClient client = new HttpClient();
client.DefaultRequestHeaders.Add("User-Agent", $".NET-{Environment.Version}-SDK-2.6.4");
client.DefaultRequestHeaders.Add("User-Agent", $".NET-{Environment.Version}-SDK-2.7.0");
return client;
}

Expand Down
Binary file added StarkBank/StarkBank/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions StarkBank/StarkBankTests/StarkBankTests.csproj
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;netcoreapp3.0;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<IsPackable>false</IsPackable>
<ReleaseVersion>2.6.4</ReleaseVersion>
<ReleaseVersion>2.7.0</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.0" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.2"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit.runner.console" Version="2.4.1">
<PackageReference Include="xunit.runner.console" Version="2.4.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit d9de08f

Please sign in to comment.