diff --git a/CHANGELOG.md b/CHANGELOG.md index 858a853..497918d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [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) + +**Merged pull requests:** + +- Fix cancel transaction service [\#42](https://github.com/uphold/uphold-sdk-ios/pull/42) ([diogoguimaraes](https://github.com/diogoguimaraes)) +- Update dependencies [\#41](https://github.com/uphold/uphold-sdk-ios/pull/41) ([SandroMachado](https://github.com/SandroMachado)) +- Add card settings to the card request model [\#40](https://github.com/uphold/uphold-sdk-ios/pull/40) ([SandroMachado](https://github.com/SandroMachado)) +- Fix copy frameworks [\#39](https://github.com/uphold/uphold-sdk-ios/pull/39) ([diogoguimaraes](https://github.com/diogoguimaraes)) +- Fix transaction commit message [\#38](https://github.com/uphold/uphold-sdk-ios/pull/38) ([diogoguimaraes](https://github.com/diogoguimaraes)) +- Update to Swift 2.2 [\#37](https://github.com/uphold/uphold-sdk-ios/pull/37) ([diogoguimaraes](https://github.com/diogoguimaraes)) +- Add a new card to the user [\#36](https://github.com/uphold/uphold-sdk-ios/pull/36) ([diogoguimaraes](https://github.com/diogoguimaraes)) +- Add cocoapods badge [\#35](https://github.com/uphold/uphold-sdk-ios/pull/35) ([diogoguimaraes](https://github.com/diogoguimaraes)) + ## [0.0.1](https://github.com/uphold/uphold-sdk-ios/tree/0.0.1) (2016-03-10) **Implemented enhancements:** diff --git a/README.md b/README.md index c531e80..9ecdbe2 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.0.1 + github "uphold/uphold-sdk-ios" ~> 0.1.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 5f59404..abe61f5 100644 --- a/Source/Info.plist +++ b/Source/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.0.1 + 0.1.0 CFBundleSignature ???? CFBundleVersion diff --git a/Tests/Unit/GlobalConfigurationProductionTest.swift b/Tests/Unit/GlobalConfigurationProductionTest.swift index c2acd65..e792cc5 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.0.1", "Failed: Wrong URL value.") + XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.1.0", "Failed: Wrong URL value.") } } diff --git a/Tests/Unit/GlobalConfigurationSandboxTest.swift b/Tests/Unit/GlobalConfigurationSandboxTest.swift index 41b378e..a34fb16 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.0.1", "Failed: Wrong URL value.") + XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.1.0", "Failed: Wrong URL value.") } } diff --git a/UpholdSdk.podspec.json b/UpholdSdk.podspec.json index 45ad30b..f525f4e 100644 --- a/UpholdSdk.podspec.json +++ b/UpholdSdk.podspec.json @@ -1,6 +1,6 @@ { "name": "UpholdSdk", - "version": "0.0.1", + "version": "0.1.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.0.1" + "tag": "0.1.0" }, "platforms": { "ios": "9.0"