Skip to content

Commit 5b9e2e6

Browse files
Release 7.0.0
1 parent 9f0e91b commit 5b9e2e6

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ Install-Package JsonSubTypes
3131
## Installation
3232
```
3333
# Package Manager
34-
Install-Package Wallee -Version 6.0.0
34+
Install-Package Wallee -Version 7.0.0
3535
# .NET CLI
36-
dotnet add package Wallee --version 6.0.0
36+
dotnet add package Wallee --version 7.0.0
3737
# Paket CLI
38-
paket add Wallee --version 6.0.0
38+
paket add Wallee --version 7.0.0
3939
# PackageReference
40-
<PackageReference Include="Wallee" Version="6.0.0" />
40+
<PackageReference Include="Wallee" Version="7.0.0" />
4141
```
4242

4343
Then include the DLL (under the `bin` folder) in the C# project, and use the namespaces:

src/Wallee/Client/ApiClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public Object CallApi(
148148
{
149149

150150
Dictionary<String, String> defaultHeaderParams = new Dictionary<String, String>() {
151-
{"x-meta-sdk-version", "6.0.0"},
151+
{"x-meta-sdk-version", "7.0.0"},
152152
{"x-meta-sdk-language", "csharp"},
153153
{"x-meta-sdk-provider", "wallee"},
154154
{"x-meta-sdk-language-version", Environment.Version.ToString()}

src/Wallee/Client/Configuration.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class Configuration : IReadableConfiguration
2121
/// Version of the package.
2222
/// </summary>
2323
/// <value>Version of the package.</value>
24-
public const string Version = "6.0.0";
24+
public const string Version = "7.0.0";
2525

2626
/// <summary>
2727
/// Identifier for ISO 8601 DateTime Format
@@ -94,7 +94,7 @@ public Configuration(string applicationUserID, string authenticationKey, RestCli
9494
_authenticationKey = authenticationKey;
9595
_applicationUserID = applicationUserID;
9696
_restClientOptions = restClientOptions;
97-
UserAgent = "Wallee/6.0.0/csharp";
97+
UserAgent = "Wallee/7.0.0/csharp";
9898
BasePath = "https://app-wallee.com:443/api";
9999
DefaultHeader = new ConcurrentDictionary<string, string>();
100100
ApiKey = new ConcurrentDictionary<string, string>();
@@ -355,8 +355,8 @@ public static String ToDebugReport()
355355
String report = "C# SDK (Wallee) Debug Report:\n";
356356
report += " OS: " + System.Environment.OSVersion + "\n";
357357
report += " .NET Framework Version: " + System.Environment.Version + "\n";
358-
report += " Version of the API: 6.0.0\n";
359-
report += " SDK Package Version: 6.0.0\n";
358+
report += " Version of the API: 7.0.0\n";
359+
report += " SDK Package Version: 7.0.0\n";
360360

361361
return report;
362362
}

src/Wallee/Wallee.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
<PackageId>Wallee</PackageId>
2121
<PackageLicense>https://www.apache.org/licenses/LICENSE-2.0.txt</PackageLicense>
2222
<PackageProjectUrl>https://github.com/wallee-payment/csharp-sdk</PackageProjectUrl>
23-
<PackageVersion>6.0.0</PackageVersion>
24-
<Version>6.0.0</Version>
23+
<PackageVersion>7.0.0</PackageVersion>
24+
<Version>7.0.0</Version>
2525
<PackageTags>Wallee;payment;sdk;Payment Integration</PackageTags>
2626
<OutputType>Library</OutputType>
2727
<Owners>customweb</Owners>
28-
<ReleaseVersion>6.0.0</ReleaseVersion>
28+
<ReleaseVersion>7.0.0</ReleaseVersion>
2929
<RepositoryType>git</RepositoryType>
3030
<RepositoryUrl>https://github.com/wallee-payment/csharp-sdk.git</RepositoryUrl>
3131
<RootNamespace>Wallee</RootNamespace>

0 commit comments

Comments
 (0)