Skip to content

Commit

Permalink
Release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMachado committed Jun 15, 2016
1 parent aba6acc commit 280cf57
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.2.1](https://github.com/uphold/uphold-sdk-android/tree/0.2.1) (2016-06-15)
[Full Changelog](https://github.com/uphold/uphold-sdk-android/compare/0.2.0...0.2.1)

**Closed issues:**

- User.getUserTransactions\(\).hasNext throws an exception [\#85](https://github.com/uphold/uphold-sdk-android/issues/85)

**Merged pull requests:**

- Fix headers comparison [\#86](https://github.com/uphold/uphold-sdk-android/pull/86) ([SandroMachado](https://github.com/SandroMachado))
- Update README.md [\#84](https://github.com/uphold/uphold-sdk-android/pull/84) ([SandroMachado](https://github.com/SandroMachado))

## [0.2.0](https://github.com/uphold/uphold-sdk-android/tree/0.2.0) (2016-04-29)
[Full Changelog](https://github.com/uphold/uphold-sdk-android/compare/0.1.0...0.2.0)

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.2.0:sandboxRelease@aar'`, to use the sandbox environment.
compile ('com.github.uphold:uphold-sdk-android:0.2.0@aar') {
// Add the classifier `sandboxRelease`, i.e. `'com.github.uphold:uphold-sdk-android:0.2.1:sandboxRelease@aar'`, to use the sandbox environment.
compile ('com.github.uphold:uphold-sdk-android:0.2.1@aar') {
transitive = true
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ android {
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 9
versionName "0.2.0"
versionCode 10
versionName "0.2.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

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.2.0 (https://github.com/uphold/uphold-sdk-android)")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.2.1 (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.2.0 (https://github.com/uphold/uphold-sdk-android)")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.2.1 (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.2.0 (https://github.com/uphold/uphold-sdk-android)")));
Assert.assertTrue(request.getHeaders().contains(new Header("User-Agent", "uphold-android-sdk/0.2.1 (https://github.com/uphold/uphold-sdk-android)")));
}

}

0 comments on commit 280cf57

Please sign in to comment.