diff --git a/CHANGELOG.md b/CHANGELOG.md index eb5f940..3db3aca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.11.0](https://github.com/uphold/uphold-sdk-android/tree/0.11.0) (2018-01-19) +[Full Changelog](https://github.com/uphold/uphold-sdk-android/compare/0.10.0...0.11.0) + +**Merged pull requests:** + +- Add Node model to Origin/Destination of a transaction [\#101](https://github.com/uphold/uphold-sdk-android/pull/101) ([d-moreira](https://github.com/d-moreira)) + ## [0.10.0](https://github.com/uphold/uphold-sdk-android/tree/0.10.0) (2017-12-14) [Full Changelog](https://github.com/uphold/uphold-sdk-android/compare/0.9.0...0.10.0) diff --git a/README.md b/README.md index ec18bfe..827b9c0 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.10.0:sandboxRelease@aar'`, to use the sandbox environment. - compile ('com.github.uphold:uphold-sdk-android:0.10.0@aar') { + // Add the classifier `sandboxRelease`, i.e. `'com.github.uphold:uphold-sdk-android:0.11.0:sandboxRelease@aar'`, to use the sandbox environment. + compile ('com.github.uphold:uphold-sdk-android:0.11.0@aar') { transitive = true } } diff --git a/src/app/build.gradle b/src/app/build.gradle index 8f2c13a..c7db00e 100644 --- a/src/app/build.gradle +++ b/src/app/build.gradle @@ -19,8 +19,8 @@ android { defaultConfig { minSdkVersion 16 targetSdkVersion 22 - versionCode 16 - versionName "0.10.0" + versionCode 17 + versionName "0.11.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } 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 ebde885..2f8db57 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 @@ -71,7 +71,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.10.0 (https://github.com/uphold/uphold-sdk-android)"))); + Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.11.0 (https://github.com/uphold/uphold-sdk-android)"))); } @Test @@ -92,7 +92,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.10.0 (https://github.com/uphold/uphold-sdk-android)"))); + Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.11.0 (https://github.com/uphold/uphold-sdk-android)"))); } @Test @@ -113,7 +113,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.10.0 (https://github.com/uphold/uphold-sdk-android)"))); + Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.11.0 (https://github.com/uphold/uphold-sdk-android)"))); } }