Skip to content

Commit

Permalink
Release 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMachado committed Jan 14, 2016
1 parent 64fa9fb commit 6505fc4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [0.0.7](https://github.com/uphold/uphold-sdk-android/tree/0.0.7) (2016-01-14)
[Full Changelog](https://github.com/uphold/uphold-sdk-android/compare/0.0.6...0.0.7)

**Closed issues:**

- Update the user model to include the new OTP settings model [\#73](https://github.com/uphold/uphold-sdk-android/issues/73)
- Remove the field `hasOtpEnabled` from the user settings model [\#72](https://github.com/uphold/uphold-sdk-android/issues/72)

**Merged pull requests:**

- Remove `hasOtpEnable` field from user settings model [\#75](https://github.com/uphold/uphold-sdk-android/pull/75) ([SandroMachado](https://github.com/SandroMachado))
- Add otp settings model [\#74](https://github.com/uphold/uphold-sdk-android/pull/74) ([SandroMachado](https://github.com/SandroMachado))
- Add 2FA transaction support [\#71](https://github.com/uphold/uphold-sdk-android/pull/71) ([SandroMachado](https://github.com/SandroMachado))
- Update the JitPack badge [\#70](https://github.com/uphold/uphold-sdk-android/pull/70) ([SandroMachado](https://github.com/SandroMachado))
- Update gradle [\#69](https://github.com/uphold/uphold-sdk-android/pull/69) ([SandroMachado](https://github.com/SandroMachado))

## [0.0.6](https://github.com/uphold/uphold-sdk-android/tree/0.0.6) (2016-01-04)
[Full Changelog](https://github.com/uphold/uphold-sdk-android/compare/0.0.5...0.0.6)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ repositories {
}
dependencies {
// Add the classifier `sandboxRelease`, i.e. `'com.github.uphold:uphold-sdk-android:0.0.6:sandboxRelease@aar'`, to use the sandbox environment.
compile ('com.github.uphold:uphold-sdk-android:0.0.6@aar') {
// Add the classifier `sandboxRelease`, i.e. `'com.github.uphold:uphold-sdk-android:0.0.7:sandboxRelease@aar'`, to use the sandbox environment.
compile ('com.github.uphold:uphold-sdk-android:0.0.7@aar') {
transitive = true
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public Promise<Card> call(UpholdRestAdapter adapter) {

Assert.assertEquals(request.getHeaders().size(), 2);
Assert.assertTrue(request.getHeaders().contains(new Header("Authorization", "Bearer fuz")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.0.6 (https://github.com/uphold/uphold-sdk-android)")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.0.7 (https://github.com/uphold/uphold-sdk-android)")));
}

@Test
Expand All @@ -83,7 +83,7 @@ public Promise<Card> call(UpholdRestAdapter adapter) {
Request request = adapter.getRequest();

Assert.assertEquals(request.getHeaders().size(), 1);
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.0.6 (https://github.com/uphold/uphold-sdk-android)")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.0.7 (https://github.com/uphold/uphold-sdk-android)")));
}

@Test
Expand All @@ -104,7 +104,7 @@ public Promise<Card> call(UpholdRestAdapter adapter) {
Request request = adapter.getRequest();

Assert.assertEquals(request.getHeaders().size(), 1);
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.0.6 (https://github.com/uphold/uphold-sdk-android)")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.0.7 (https://github.com/uphold/uphold-sdk-android)")));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public class GlobalConfigurations {

public static final String UPHOLD_SDK_VERSION = "0.0.6";
public static final String UPHOLD_SDK_VERSION = "0.0.7";
public static final String SDK_GITHUB_URL = "https://github.com/uphold/uphold-sdk-android";

}

0 comments on commit 6505fc4

Please sign in to comment.