Skip to content

Commit

Permalink
8.23.2 - The 8.23.1 dll was not the correct version
Browse files Browse the repository at this point in the history
Bugfix: Re-releasing 8.23.1.
  • Loading branch information
Gregory Dake committed Jan 17, 2014
1 parent d580564 commit 58e67f6
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.23.2 (Jan 17, 2014)
* Bugfix: Re-releasing 8.23.1. The 8.23.1 dll was not the correct version.

== Version 8.23.1 (Jan 16, 2014)
* Bugfix: When sending pos catlevel of "self service", because this string is not a valid name, the xml generated was missing the space. This fix changes posCatLevelEnum from an enum to a class and adds a Serialize() method that correctly converts the member name "selfservice" to the xml value named "self service"

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.23.1\"\r\n";
xmlHeader += "merchantSdk=\"DotNet;8.23.2\"\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 @@ -376,7 +376,7 @@ private litleOnlineRequest createLitleOnlineRequest()
{
litleOnlineRequest request = new litleOnlineRequest();
request.merchantId = config["merchantId"];
request.merchantSdk = "DotNet;8.23.1";
request.merchantSdk = "DotNet;8.23.2";
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.23.1.0")]
[assembly: AssemblyFileVersion("8.23.1.0")]
[assembly: AssemblyVersion("8.23.2.0")]
[assembly: AssemblyFileVersion("8.23.2.0")]
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.23.1""
merchantSdk=""DotNet;8.23.2""
merchantId=""01234"">
";
Assert.AreEqual(expected, actual);
Expand Down

0 comments on commit 58e67f6

Please sign in to comment.