diff --git a/CHANGELOG.md b/CHANGELOG.md
index b7e6c53..4f41562 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+## [0.5.0](https://github.com/uphold/uphold-sdk-ios/tree/0.5.0) (2017-07-19)
+[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.4.0...0.5.0)
+
+**Merged pull requests:**
+
+- Add merchant model to transaction origin [\#56](https://github.com/uphold/uphold-sdk-ios/pull/56) ([SandroMachado](https://github.com/SandroMachado))
+
## [0.4.0](https://github.com/uphold/uphold-sdk-ios/tree/0.4.0) (2017-06-08)
[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.3.0...0.4.0)
diff --git a/README.md b/README.md
index 9fb6370..a3570b3 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.4.0
+ github "uphold/uphold-sdk-ios" ~> 0.5.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 c941094..288c341 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.4.0
+ 0.5.0
CFBundleSignature
????
CFBundleVersion
diff --git a/Tests/Unit/GlobalConfigurationProductionTest.swift b/Tests/Unit/GlobalConfigurationProductionTest.swift
index bd0f71e..ed7ea7a 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.4.0", "Failed: Wrong URL value.")
+ XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.5.0", "Failed: Wrong URL value.")
}
}
diff --git a/Tests/Unit/GlobalConfigurationSandboxTest.swift b/Tests/Unit/GlobalConfigurationSandboxTest.swift
index 7a19964..0edf331 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.4.0", "Failed: Wrong URL value.")
+ XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.5.0", "Failed: Wrong URL value.")
}
}
diff --git a/UpholdSdk.podspec.json b/UpholdSdk.podspec.json
index 97a2ab2..54b697a 100644
--- a/UpholdSdk.podspec.json
+++ b/UpholdSdk.podspec.json
@@ -1,6 +1,6 @@
{
"name": "UpholdSdk",
- "version": "0.4.0",
+ "version": "0.5.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.4.0"
+ "tag": "0.5.0"
},
"platforms": {
"ios": "9.0"