diff --git a/CHANGELOG.md b/CHANGELOG.md index 6443692..6cde711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/README.md b/README.md index d5d8e1c..c80b80e 100644 --- a/README.md +++ b/README.md @@ -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 } } diff --git a/src/app/src/androidTest/java/com/uphold/uphold_android_sdk/test/integration/client/restadapter/UpholdRestAdapterTest.java b/src/app/src/androidTest/java/com/uphold/uphold_android_sdk/test/integration/client/restadapter/UpholdRestAdapterTest.java index 2351b91..e7c7911 100644 --- a/src/app/src/androidTest/java/com/uphold/uphold_android_sdk/test/integration/client/restadapter/UpholdRestAdapterTest.java +++ b/src/app/src/androidTest/java/com/uphold/uphold_android_sdk/test/integration/client/restadapter/UpholdRestAdapterTest.java @@ -62,7 +62,7 @@ public Promise 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 @@ -83,7 +83,7 @@ public Promise 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 @@ -104,7 +104,7 @@ public Promise 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)"))); } } diff --git a/src/app/src/main/java/com/uphold/uphold_android_sdk/config/GlobalConfigurations.java b/src/app/src/main/java/com/uphold/uphold_android_sdk/config/GlobalConfigurations.java index 84ac6bc..2f0e76b 100644 --- a/src/app/src/main/java/com/uphold/uphold_android_sdk/config/GlobalConfigurations.java +++ b/src/app/src/main/java/com/uphold/uphold_android_sdk/config/GlobalConfigurations.java @@ -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"; }