Skip to content

Commit

Permalink
increment minor version for tax identifier enum fix
Browse files Browse the repository at this point in the history
  • Loading branch information
brianarnold789 committed Jul 6, 2017
1 parent e985993 commit 5089fee
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 8.29.4 (July, 6 2017)
* Bugfix: Fix serialization issue with taxTypeIdentifierEnum

== Version 8.29.3 (May 10, 2017)
* Feature: add neuter for track data in log file

Expand Down
2 changes: 1 addition & 1 deletion LitleSdkForNet/LitleSdkForNet/LitleBatchRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ public string generateXmlHeader()
{
xmlHeader += "numBalanceInquirys=\"" + numBalanceInquiries + "\"\r\n";
}
xmlHeader += "merchantSdk=\"DotNet;8.29.3\"\r\n";
xmlHeader += "merchantSdk=\"DotNet;8.29.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 @@ -378,7 +378,7 @@ private litleOnlineRequest createLitleOnlineRequest()
{
litleOnlineRequest request = new litleOnlineRequest();
request.merchantId = config["merchantId"];
request.merchantSdk = "DotNet;8.29.3";
request.merchantSdk = "DotNet;8.29.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("8.29.3")]
[assembly: AssemblyFileVersion("8.29.3")]
[assembly: AssemblyVersion("8.29.4")]
[assembly: AssemblyFileVersion("8.29.4")]
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()
String actual = batchRequest.generateXmlHeader();
String expected = @"
<batchRequest id=""""
merchantSdk=""DotNet;8.29.3""
merchantSdk=""DotNet;8.29.4""
merchantId=""01234"">
";
Assert.AreEqual(expected, actual);
Expand Down

0 comments on commit 5089fee

Please sign in to comment.