Skip to content

Commit

Permalink
Merge pull request #43 from CyberSource/future
Browse files Browse the repository at this point in the history
version changed to 1.4.1 for microsoft azure support
  • Loading branch information
shamirwasia authored Jun 22, 2017
2 parents 60edf10 + bd826be commit 685e342
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CyberSource/Base/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 Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.4.0")]
[assembly: AssemblyFileVersion("1.4.0")]
[assembly: AssemblyVersion("1.4.1")]
[assembly: AssemblyFileVersion("1.4.1")]
2 changes: 1 addition & 1 deletion CyberSource/Client/BaseClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public abstract class BaseClient
/// <summary>
/// Version of this client.
/// </summary>
public const string CLIENT_LIBRARY_VERSION = "1.4.0";
public const string CLIENT_LIBRARY_VERSION = "1.4.1";

/// <summary>
/// Proxy object that is initialized during start-up, if needed.
Expand Down
2 changes: 1 addition & 1 deletion CyberSource/Client/NVPClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ private static void SetVersionInformation(Hashtable request)
request["clientLibrary"] = ".NET NVP";
request["clientLibraryVersion"] = CLIENT_LIBRARY_VERSION;
request["clientEnvironment"] = mEnvironmentInfo;
request["clientSecurityLibraryVersion"] =".Net 1.4.0";
request["clientSecurityLibraryVersion"] =".Net 1.4.1";
}
}
}
6 changes: 3 additions & 3 deletions CyberSource/Client/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down Expand Up @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.4.0")]
[assembly: AssemblyFileVersion("1.4.0")]
[assembly: AssemblyVersion("1.4.1")]
[assembly: AssemblyFileVersion("1.4.1")]
2 changes: 1 addition & 1 deletion CyberSource/Client/SoapClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ private static void SetVersionInformation(
requestMessage.clientLibrary = ".NET Soap";
requestMessage.clientLibraryVersion = CLIENT_LIBRARY_VERSION;
requestMessage.clientEnvironment = mEnvironmentInfo;
requestMessage.clientSecurityLibraryVersion =".Net 1.4.0";
requestMessage.clientSecurityLibraryVersion =".Net 1.4.1";
}
}
}
2 changes: 1 addition & 1 deletion CyberSource/Client/XmlClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ XmlNode previousSibling

SetField(requestMessageNode, ref previousSibling,
"clientSecurityLibraryVersion",
".Net 1.4.0", nspace);
".Net 1.4.1", nspace);
}

private static void SetField(
Expand Down
6 changes: 3 additions & 3 deletions CyberSourceTests/BaseTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
[assembly: AssemblyVersion("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]
6 changes: 3 additions & 3 deletions CyberSourceTests/MTTest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

Expand Down Expand Up @@ -29,5 +29,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
[assembly: AssemblyVersion("1.4.1.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]

0 comments on commit 685e342

Please sign in to comment.