Skip to content

Commit

Permalink
Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMachado committed Jan 16, 2018
1 parent 6ac2d2b commit 619f049
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.12.0](https://github.com/uphold/uphold-sdk-ios/tree/0.12.0) (2018-01-16)
[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.11.0...0.12.0)

**Merged pull requests:**

- Allow transaction commit request with empty message [\#65](https://github.com/uphold/uphold-sdk-ios/pull/65) ([SandroMachado](https://github.com/SandroMachado))

## [0.11.0](https://github.com/uphold/uphold-sdk-ios/tree/0.11.0) (2017-12-06)
[Full Changelog](https://github.com/uphold/uphold-sdk-ios/compare/0.10.0...0.11.0)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.0
github "uphold/uphold-sdk-ios" ~> 0.12.0
```

2. Run `carthage update --platform iOS` specifying the build configuration to use Uphold's different environments.
Expand Down
2 changes: 1 addition & 1 deletion Source/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.11.0</string>
<string>0.12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/UnitTests/GlobalConfigurationProductionTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class GlobalConfigurationProductionTest: XCTestCase {
}

func testUpholdSdkVersionShouldReturnSdkVersion() {
XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.11.0", "Failed: Wrong URL value.")
XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.12.0", "Failed: Wrong URL value.")
}

}
2 changes: 1 addition & 1 deletion Tests/UnitTests/GlobalConfigurationSandboxTest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class GlobalConfigurationSandboxTest: XCTestCase {
}

func testUpholdSdkVersionShouldReturnSdkVersion() {
XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.11.0", "Failed: Wrong URL value.")
XCTAssertEqual(GlobalConfigurations.UPHOLD_SDK_VERSION, "0.12.0", "Failed: Wrong URL value.")
}

}
4 changes: 2 additions & 2 deletions UpholdSdk.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "UpholdSdk",
"version": "0.11.0",
"version": "0.12.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",
Expand All @@ -11,7 +11,7 @@
},
"source": {
"git": "https://github.com/uphold/uphold-sdk-ios.git",
"tag": "0.11.0"
"tag": "0.12.0"
},
"platforms": {
"ios": "10.0"
Expand Down

0 comments on commit 619f049

Please sign in to comment.