Skip to content

Commit

Permalink
Release 3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewrowanwallee committed Oct 15, 2021
1 parent 68dbe33 commit 640a38b
Show file tree
Hide file tree
Showing 3 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 have a bug which causes file uploa
## Installation
```
# Package Manager
Install-Package Wallee -Version 3.0.6
Install-Package Wallee -Version 3.0.7
# .NET CLI
dotnet add package Wallee --version 3.0.6
dotnet add package Wallee --version 3.0.7
# Paket CLI
paket add Wallee --version 3.0.6
paket add Wallee --version 3.0.7
# PackageReference
<PackageReference Include="Wallee" Version="3.0.6" />
<PackageReference Include="Wallee" Version="3.0.7" />
```

Then include the DLL (under the `bin` folder) in the C# project, and use the namespaces:
Expand Down
10 changes: 5 additions & 5 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 = "3.0.6";
public const string Version = "3.0.7";

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

0 comments on commit 640a38b

Please sign in to comment.