Skip to content

Commit 14b282a

Browse files
committed
Bump to v2.14.0
1 parent 691ffd8 commit 14b282a

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment:
1313

1414

1515
## [Unreleased]
16+
17+
## [2.14.0] - 2025-03-17
1618
### Added
1719
- rules and displayDescription parameters to DynamicBrcode resource
1820
- NuGetREADME.md file to build

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -81,30 +81,30 @@ Given a version number MAJOR.MINOR.PATCH, increment:
8181

8282
## 1. Install our SDK
8383

84-
StarkBank`s .NET SDK is available on NuGet as starkbank 2.13.0.
84+
StarkBank`s .NET SDK is available on NuGet as starkbank 2.14.0.
8585

8686
1.1 To install the Package Manager:
8787

8888
```sh
89-
Install-Package starkbank -Version 2.13.0
89+
Install-Package starkbank -Version 2.14.0
9090
```
9191

9292
1.2 To install the .NET CLI:
9393

9494
```sh
95-
dotnet add package starkbank --version 2.13.0
95+
dotnet add package starkbank --version 2.14.0
9696
```
9797

9898
1.3 To install by PackageReference:
9999

100100
```sh
101-
<PackageReference Include="starkbank" Version="2.13.0" />
101+
<PackageReference Include="starkbank" Version="2.14.0" />
102102
```
103103

104104
1.4 To install with Paket CLI:
105105

106106
```sh
107-
paket add starkbank --version 2.13.0
107+
paket add starkbank --version 2.14.0
108108
```
109109

110110
## 2. Create your Private and Public Keys

StarkBank/StarkBank.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ Global
3636
$6.TabsToSpaces = True
3737
$6.scope = text/plain
3838
description = SDK to facilitate .NET integrations with Stark Bank
39-
version = 2.13.0
39+
version = 2.14.0
4040
EndGlobalSection
4141
EndGlobal

StarkBank/StarkBank/StarkBank.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFramework>netCoreApp2.0</TargetFramework>
5-
<Version>2.13.0</Version>
6-
<ReleaseVersion>2.13.0</ReleaseVersion>
7-
<PackageVersion>2.13.0</PackageVersion>
5+
<Version>2.14.0</Version>
6+
<ReleaseVersion>2.14.0</ReleaseVersion>
7+
<PackageVersion>2.14.0</PackageVersion>
88
</PropertyGroup>
99

1010
<ItemGroup>

StarkBank/StarkBank/Utils/Rest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class Rest
1616

1717
static string host = StarkHost.bank;
1818
static string apiVersion = "v2";
19-
static string sdkVersion = "2.13.0";
19+
static string sdkVersion = "2.14.0";
2020

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

0 commit comments

Comments
 (0)