Skip to content

Commit

Permalink
update to new release for HTTP socket timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
brianarnold789 committed Sep 1, 2017
1 parent 4a10fb4 commit 02d34b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ public string generateXmlHeader()
xmlHeader += "physicalCheckDebitAmount=\"" + physicalCheckDebitAmount + "\"\r\n";
}

xmlHeader += "merchantSdk=\"DotNet;9.12.3\"\r\n";
xmlHeader += "merchantSdk=\"DotNet;9.12.4\"\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 @@ -395,7 +395,7 @@ private litleOnlineRequest createLitleOnlineRequest()
{
litleOnlineRequest request = new litleOnlineRequest();
request.merchantId = config["merchantId"];
request.merchantSdk = "DotNet;9.12.3";
request.merchantSdk = "DotNet;9.12.4";
authentication 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 @@ -32,5 +32,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("9.12.3")]
[assembly: AssemblyFileVersion("9.12.3")]
[assembly: AssemblyVersion("9.12.4")]
[assembly: AssemblyFileVersion("9.12.4")]
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNetTest/Unit/TestBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void TestBatchRequestContainsMerchantSdkAttribute()
var actual = _batchRequest.generateXmlHeader();
const string expected = @"
<batchRequest id=""""
merchantSdk=""DotNet;9.12.3""
merchantSdk=""DotNet;9.12.4""
merchantId=""01234"">
";
Assert.AreEqual(expected, actual);
Expand Down

0 comments on commit 02d34b0

Please sign in to comment.