Skip to content

Commit

Permalink
Release 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wallee-deployment-user committed Jul 20, 2023
1 parent 9f0e91b commit 5b9e2e6
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 @@ -31,13 +31,13 @@ Install-Package JsonSubTypes
## Installation
```
# Package Manager
Install-Package Wallee -Version 6.0.0
Install-Package Wallee -Version 7.0.0
# .NET CLI
dotnet add package Wallee --version 6.0.0
dotnet add package Wallee --version 7.0.0
# Paket CLI
paket add Wallee --version 6.0.0
paket add Wallee --version 7.0.0
# PackageReference
<PackageReference Include="Wallee" Version="6.0.0" />
<PackageReference Include="Wallee" Version="7.0.0" />
```

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 @@ -148,7 +148,7 @@ public Object CallApi(
{

Dictionary<String, String> defaultHeaderParams = new Dictionary<String, String>() {
{"x-meta-sdk-version", "6.0.0"},
{"x-meta-sdk-version", "7.0.0"},
{"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 @@ -21,7 +21,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "6.0.0";
public const string Version = "7.0.0";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -94,7 +94,7 @@ public Configuration(string applicationUserID, string authenticationKey, RestCli
_authenticationKey = authenticationKey;
_applicationUserID = applicationUserID;
_restClientOptions = restClientOptions;
UserAgent = "Wallee/6.0.0/csharp";
UserAgent = "Wallee/7.0.0/csharp";
BasePath = "https://app-wallee.com:443/api";
DefaultHeader = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -355,8 +355,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: 6.0.0\n";
report += " SDK Package Version: 6.0.0\n";
report += " Version of the API: 7.0.0\n";
report += " SDK Package Version: 7.0.0\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://github.com/wallee-payment/csharp-sdk</PackageProjectUrl>
<PackageVersion>6.0.0</PackageVersion>
<Version>6.0.0</Version>
<PackageVersion>7.0.0</PackageVersion>
<Version>7.0.0</Version>
<PackageTags>Wallee;payment;sdk;Payment Integration</PackageTags>
<OutputType>Library</OutputType>
<Owners>customweb</Owners>
<ReleaseVersion>6.0.0</ReleaseVersion>
<ReleaseVersion>7.0.0</ReleaseVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/wallee-payment/csharp-sdk.git</RepositoryUrl>
<RootNamespace>Wallee</RootNamespace>
Expand Down

0 comments on commit 5b9e2e6

Please sign in to comment.