Skip to content

Commit

Permalink
Release 4.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlo-vo committed Nov 15, 2022
1 parent d40e3bf commit 7b76698
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ NOTE: RestSharp versions greater than [106.2.1, 107) have a bug which causes fil
## Installation
```
# Package Manager
Install-Package Wallee -Version 4.3.0
Install-Package Wallee -Version 4.3.8
# .NET CLI
dotnet add package Wallee --version 4.3.0
dotnet add package Wallee --version 4.3.8
# Paket CLI
paket add Wallee --version 4.3.0
paket add Wallee --version 4.3.8
# PackageReference
<PackageReference Include="Wallee" Version="4.3.0" />
<PackageReference Include="Wallee" Version="4.3.8" />
```

Then include the DLL (under the `bin` folder) in the C# project, and use the namespaces:
Expand Down
2 changes: 1 addition & 1 deletion src/Wallee/Client/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public Object CallApi(
{

Dictionary<String, String> defaultHeaderParams = new Dictionary<String, String>() {
{"x-meta-sdk-version", "4.3.0"},
{"x-meta-sdk-version", "4.3.8"},
{"x-meta-sdk-language", "csharp"},
{"x-meta-sdk-provider", "wallee"},
{"x-meta-sdk-language-version", Environment.Version.ToString()}
Expand Down
8 changes: 4 additions & 4 deletions src/Wallee/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "4.3.0";
public const string Version = "4.3.8";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -90,7 +90,7 @@ public Configuration(string applicationUserID, string authenticationKey)
}
_authenticationKey = authenticationKey;
_applicationUserID = applicationUserID;
UserAgent = "Wallee/4.3.0/csharp";
UserAgent = "Wallee/4.3.8/csharp";
BasePath = "https://app-wallee.com:443/api";
DefaultHeader = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -338,8 +338,8 @@ public static String ToDebugReport()
String report = "C# SDK (Wallee) Debug Report:\n";
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
report += " Version of the API: 4.3.0\n";
report += " SDK Package Version: 4.3.0\n";
report += " Version of the API: 4.3.8\n";
report += " SDK Package Version: 4.3.8\n";

return report;
}
Expand Down
6 changes: 3 additions & 3 deletions src/Wallee/Wallee.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
<PackageId>Wallee</PackageId>
<PackageLicense>https://www.apache.org/licenses/LICENSE-2.0.txt</PackageLicense>
<PackageProjectUrl>https:/wallee-payment/csharp-sdk</PackageProjectUrl>
<PackageVersion>4.3.0</PackageVersion>
<Version>4.3.0</Version>
<PackageVersion>4.3.8</PackageVersion>
<Version>4.3.8</Version>
<PackageTags>Wallee;payment;sdk;Payment Integration</PackageTags>
<OutputType>Library</OutputType>
<Owners>customweb</Owners>
<ReleaseVersion>4.3.0</ReleaseVersion>
<ReleaseVersion>4.3.8</ReleaseVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https:/wallee-payment/csharp-sdk.git</RepositoryUrl>
<RootNamespace>Wallee</RootNamespace>
Expand Down

0 comments on commit 7b76698

Please sign in to comment.