Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v2.14.0 #83

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.14.0] - 2025-03-17
### Added
- rules and displayDescription parameters to DynamicBrcode resource
- NuGetREADME.md file to build
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,30 +81,30 @@ Given a version number MAJOR.MINOR.PATCH, increment:

## 1. Install our SDK

StarkBank`s .NET SDK is available on NuGet as starkbank 2.13.0.
StarkBank`s .NET SDK is available on NuGet as starkbank 2.14.0.

1.1 To install the Package Manager:

```sh
Install-Package starkbank -Version 2.13.0
Install-Package starkbank -Version 2.14.0
```

1.2 To install the .NET CLI:

```sh
dotnet add package starkbank --version 2.13.0
dotnet add package starkbank --version 2.14.0
```

1.3 To install by PackageReference:

```sh
<PackageReference Include="starkbank" Version="2.13.0" />
<PackageReference Include="starkbank" Version="2.14.0" />
```

1.4 To install with Paket CLI:

```sh
paket add starkbank --version 2.13.0
paket add starkbank --version 2.14.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 @@ -36,6 +36,6 @@ Global
$6.TabsToSpaces = True
$6.scope = text/plain
description = SDK to facilitate .NET integrations with Stark Bank
version = 2.13.0
version = 2.14.0
EndGlobalSection
EndGlobal
6 changes: 3 additions & 3 deletions StarkBank/StarkBank/StarkBank.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFramework>netCoreApp2.0</TargetFramework>
<Version>2.13.0</Version>
<ReleaseVersion>2.13.0</ReleaseVersion>
<PackageVersion>2.13.0</PackageVersion>
<Version>2.14.0</Version>
<ReleaseVersion>2.14.0</ReleaseVersion>
<PackageVersion>2.14.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion StarkBank/StarkBank/Utils/Rest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class Rest

static string host = StarkHost.bank;
static string apiVersion = "v2";
static string sdkVersion = "2.13.0";
static string sdkVersion = "2.14.0";

public static IEnumerable<SubResource> GetList(User user = null, string resourceName = null, Api.ResourceMaker resourceMaker = null, Dictionary<string, object> query = null)
{
Expand Down