diff --git a/CHANGELOG.md b/CHANGELOG.md
index c97d8cd..780942f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog
+## [0.9.0](https://github.com/uphold/uphold-sdk-ios/tree/0.9.0) (2017-11-13)
+[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.8.0...0.9.0)
+
+**Closed issues:**
+
+- Release version 0.8.0 to CocoaPods [\#59](https://github.com/uphold/uphold-sdk-ios/issues/59)
+
+**Merged pull requests:**
+
+- Add set rest adapter [\#60](https://github.com/uphold/uphold-sdk-ios/pull/60) ([SandroMachado](https://github.com/SandroMachado))
+
## [0.8.0](https://github.com/uphold/uphold-sdk-ios/tree/0.8.0) (2017-10-02)
[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.7.0...0.8.0)
diff --git a/README.md b/README.md
index 2eca1e8..2142745 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.8.0
+ github "uphold/uphold-sdk-ios" ~> 0.9.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 5d7827c..76d3d18 100644
--- a/Source/Info.plist
+++ b/Source/Info.plist
@@ -15,7 +15,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.8.0
+ 0.9.0
CFBundleSignature
????
CFBundleVersion
diff --git a/Tests/UnitTests/GlobalConfigurationProductionTest.swift b/Tests/UnitTests/GlobalConfigurationProductionTest.swift
index 8c7b632..d8cc205 100644
--- a/Tests/UnitTests/GlobalConfigurationProductionTest.swift
+++ b/Tests/UnitTests/GlobalConfigurationProductionTest.swift
@@ -13,7 +13,7 @@ class GlobalConfigurationProductionTest: XCTestCase {
}
func testUpholdSdkVersionShouldReturnSdkVersion() {
- XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.8.0", "Failed: Wrong URL value.")
+ XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.9.0", "Failed: Wrong URL value.")
}
}
diff --git a/Tests/UnitTests/GlobalConfigurationSandboxTest.swift b/Tests/UnitTests/GlobalConfigurationSandboxTest.swift
index 9fd2e20..594f128 100644
--- a/Tests/UnitTests/GlobalConfigurationSandboxTest.swift
+++ b/Tests/UnitTests/GlobalConfigurationSandboxTest.swift
@@ -13,7 +13,7 @@ class GlobalConfigurationSandboxTest: XCTestCase {
}
func testUpholdSdkVersionShouldReturnSdkVersion() {
- XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.8.0", "Failed: Wrong URL value.")
+ XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.9.0", "Failed: Wrong URL value.")
}
}
diff --git a/UpholdSdk.podspec.json b/UpholdSdk.podspec.json
index 31cbbaa..fdda82a 100644
--- a/UpholdSdk.podspec.json
+++ b/UpholdSdk.podspec.json
@@ -1,6 +1,6 @@
{
"name": "UpholdSdk",
- "version": "0.8.0",
+ "version": "0.9.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.8.0"
+ "tag": "0.9.0"
},
"platforms": {
"ios": "10.0"