Skip to content

Commit

Permalink
Changing SDK version string to 11.4.11 (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
mishravinod202 authored May 4, 2023
1 parent 999892e commit c3ce7a2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
= LitleOnline CHANGELOG

== Version 11.4.11 (May 04, 2023)
* Feature: Making path separator OS agnostic

== Version 11.4.10 (April 25, 2023)
* Feature: Migrated from Tamir.SharpSSH to SSH.NET

Expand Down
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ public string generateXmlHeader()
xmlHeader += "sameDayFunding=\"" + sameDayFunding.ToString().ToLower() + "\"\r\n";
}

xmlHeader += "merchantSdk=\"DotNet;11.4.10\"\r\n";
xmlHeader += "merchantSdk=\"DotNet;11.4.11\"\r\n";

xmlHeader += "merchantId=\"" + config["merchantId"] + "\">\r\n";
return xmlHeader;
Expand Down
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleOnline.cs
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,7 @@ private litleOnlineRequest CreateLitleOnlineRequest()
{
var request = new litleOnlineRequest();
request.merchantId = _config["merchantId"];
request.merchantSdk = "DotNet;11.4.10";
request.merchantSdk = "DotNet;11.4.11";
var authentication = new authentication();
authentication.password = _config["password"];
authentication.user = _config["username"];
Expand Down
4 changes: 2 additions & 2 deletions LitleSdkForNet/LitleSdkForNet/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("11.4.10")]
[assembly: AssemblyFileVersion("11.4.10")]
[assembly: AssemblyVersion("11.4.11")]
[assembly: AssemblyFileVersion("11.4.11")]
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNetTest/Unit/TestBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public void testBatchRequestContainsMerchantSdkAttribute()
var actual = batchRequest.generateXmlHeader();
var expected = @"
<batchRequest id=""""
merchantSdk=""DotNet;11.4.10""
merchantSdk=""DotNet;11.4.11""
merchantId=""01234"">
";

Expand Down

0 comments on commit c3ce7a2

Please sign in to comment.