From 51d9582c12c897f21c7a626521973f90bff33e88 Mon Sep 17 00:00:00 2001 From: Sandro Machado Date: Mon, 27 Jun 2016 17:33:38 +0100 Subject: [PATCH] Release 0.2.0 --- CHANGELOG.md | 10 ++++++++++ README.md | 2 +- Source/Info.plist | 2 +- Tests/Unit/GlobalConfigurationProductionTest.swift | 2 +- Tests/Unit/GlobalConfigurationSandboxTest.swift | 2 +- UpholdSdk.podspec.json | 4 ++-- 6 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 497918d..2be5f4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.2.0](https://github.com/uphold/uphold-sdk-ios/tree/0.2.0) (2016-06-27) +[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.1.0...0.2.0) + +**Merged pull requests:** + +- Add create card address [\#46](https://github.com/uphold/uphold-sdk-ios/pull/46) ([SandroMachado](https://github.com/SandroMachado)) +- Add travis badge [\#45](https://github.com/uphold/uphold-sdk-ios/pull/45) ([SandroMachado](https://github.com/SandroMachado)) +- Add transaction deposits [\#44](https://github.com/uphold/uphold-sdk-ios/pull/44) ([diogoguimaraes](https://github.com/diogoguimaraes)) +- Add user accounts [\#43](https://github.com/uphold/uphold-sdk-ios/pull/43) ([diogoguimaraes](https://github.com/diogoguimaraes)) + ## [0.1.0](https://github.com/uphold/uphold-sdk-ios/tree/0.1.0) (2016-04-27) [Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.0.1...0.1.0) diff --git a/README.md b/README.md index 44aa6e4..f4c8bce 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The Uphold SDK for iOS provides an easy way for developers to integrate iOS appl 1. Add to your `Cartfile`. ``` - github "uphold/uphold-sdk-ios" ~> 0.1.0 + github "uphold/uphold-sdk-ios" ~> 0.2.0 ``` 2. Run `carthage update --platform iOS` specifying the build configuration to use Uphold's different environments. diff --git a/Source/Info.plist b/Source/Info.plist index abe61f5..6019f05 100644 --- a/Source/Info.plist +++ b/Source/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.1.0 + 0.2.0 CFBundleSignature ???? CFBundleVersion diff --git a/Tests/Unit/GlobalConfigurationProductionTest.swift b/Tests/Unit/GlobalConfigurationProductionTest.swift index e792cc5..04a8ef4 100644 --- a/Tests/Unit/GlobalConfigurationProductionTest.swift +++ b/Tests/Unit/GlobalConfigurationProductionTest.swift @@ -13,7 +13,7 @@ class GlobalConfigurationProductionTest: XCTestCase { } func testUpholdSdkVersionShouldReturnSdkVersion() { - XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.1.0", "Failed: Wrong URL value.") + XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.2.0", "Failed: Wrong URL value.") } } diff --git a/Tests/Unit/GlobalConfigurationSandboxTest.swift b/Tests/Unit/GlobalConfigurationSandboxTest.swift index a34fb16..514c8f2 100644 --- a/Tests/Unit/GlobalConfigurationSandboxTest.swift +++ b/Tests/Unit/GlobalConfigurationSandboxTest.swift @@ -13,7 +13,7 @@ class GlobalConfigurationSandboxTest: XCTestCase { } func testUpholdSdkVersionShouldReturnSdkVersion() { - XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.1.0", "Failed: Wrong URL value.") + XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.2.0", "Failed: Wrong URL value.") } } diff --git a/UpholdSdk.podspec.json b/UpholdSdk.podspec.json index f525f4e..070ddf9 100644 --- a/UpholdSdk.podspec.json +++ b/UpholdSdk.podspec.json @@ -1,6 +1,6 @@ { "name": "UpholdSdk", - "version": "0.1.0", + "version": "0.2.0", "summary": "The Uphold Swift SDK", "description": "Uphold Swift SDK\n\nThis SDK provides an abstraction from the Uphold api.\nMore information of the Uphold developer tools available at: https://uphold.com/en/developer/api", "homepage": "https://github.com/uphold/uphold-sdk-ios", @@ -11,7 +11,7 @@ }, "source": { "git": "https://github.com/uphold/uphold-sdk-ios.git", - "tag": "0.1.0" + "tag": "0.2.0" }, "platforms": { "ios": "9.0"