Skip to content

Commit de0ed85

Browse files
committed
Bump version to 1.4
Minor fix to `QueryTransaction_Rapidv40_Test`
1 parent 41a7974 commit de0ed85

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All Notable changes will be documented in this file
44

5+
## 1.4.0.0
6+
7+
- Now thread safe (thanks @davidmiani)
8+
- Added ability to set the Rapid API version and new associated fields
9+
- Added `SecuredCardData` field and marked `ThirdPartyWalletID` as deprecated
10+
- Added wrapper `QueryTransaction` method which accepts an int instead of long
11+
512
## 1.3.0.0
613

714
- Added Settlement Search

eWAY.Rapid.Tests/IntegrationTests/QueryTransactionTests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,7 @@ public void QueryTransaction_InvalidInputData_ReturnVariousErrors()
164164
[TestMethod]
165165
public void QueryTransaction_Rapidv40_Test()
166166
{
167-
string version = System.Environment.GetEnvironmentVariable("APIVERSION");
168-
int v;
169-
170-
if (int.TryParse(version, out v) && v > 31)
167+
if (GetVersion() > 31)
171168
{
172169
var client = CreateRapidApiClient();
173170
//Arrange

eWAY.Rapid.Tests/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.3.0.0")]
35-
[assembly: AssemblyFileVersion("1.3.0.0")]
34+
[assembly: AssemblyVersion("1.4.0.0")]
35+
[assembly: AssemblyFileVersion("1.4.0.0")]

eWAY.Rapid/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.3.0.0")]
36-
[assembly: AssemblyFileVersion("1.3.0.0")]
35+
[assembly: AssemblyVersion("1.4.0.0")]
36+
[assembly: AssemblyFileVersion("1.4.0.0")]
3737

3838
[assembly: InternalsVisibleTo("eWAY.Rapid.Tests,PublicKey=00240000048000009400000006020000002400005253413100040000010001001fa88da23161933c177ff28430a896e9dc1d184b788db49eed5f7a6c101ed7cd4820b80a0f22949cc0077c5fa00d7c575a678e145d35f391caf1ec747a00602fc86df22717d7c0ee5fe4607f0c64ac2b99aa6d81198d7d308db51f457576d541e2318d58f3b54859a6ee60154193472f9d8a1bfdae9c16f26aa755d658d8f0f5")]
3939
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2,PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]

0 commit comments

Comments
 (0)