Skip to content

Commit

Permalink
0.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
John Brophy committed Jun 14, 2016
1 parent fcfa666 commit 8667e5d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [0.5.1] 2016-06-14
### Fixed

- [Issue #47](https://github.com/uber/rides-ios-sdk/issues/47) SSO fails for correctly configured China apps. SDK now sends the correct Region string for SSO

## [0.5.0] 2016-06-2
### Added

Expand Down
2 changes: 1 addition & 1 deletion UberRides.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "UberRides"
s.version = "0.5.0"
s.version = "0.5.1"
s.summary = "The Official Uber Rides iOS SDK."
s.description = <<-DESC
This Swift library allows you to integrate Uber into your iOS app. It is designed to make it quick and easy to add a 'Request a Ride' button in your application, seamlessly connecting your users with Uber.
Expand Down
4 changes: 2 additions & 2 deletions source/UberRides/Configuration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ import WebKit
public static var regionString: String {
switch region {
case .China:
return "China"
return "china"
case .Default:
return "Default"
return "default"
}
}

Expand Down
2 changes: 1 addition & 1 deletion source/UberRides/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.5.0</string>
<string>0.5.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
8 changes: 4 additions & 4 deletions source/UberRidesTests/AuthenticationURLUtilityTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class AuthenticationURLUtilityTests: XCTestCase {
let expectedClientID = "testClientID"
let expectedAppName = "My Awesome App"
let expectedCallbackURI = "testURI://uberConnectNative"
let expectedLoginType = "Default"
let expectedLoginType = "default"
let expectedSDK = "ios"
let expectedSDKVersion = versionNumber

Expand Down Expand Up @@ -78,7 +78,7 @@ class AuthenticationURLUtilityTests: XCTestCase {
let expectedClientID = "testClientID"
let expectedAppName = "My Awesome App"
let expectedCallbackURI = "testURI://uberConnectNative"
let expectedLoginType = "Default"
let expectedLoginType = "default"
let expectedSDK = "ios"
let expectedSDKVersion = versionNumber

Expand Down Expand Up @@ -109,7 +109,7 @@ class AuthenticationURLUtilityTests: XCTestCase {
let expectedClientID = "testClientID"
let expectedAppName = "My Awesome App"
let expectedCallbackURI = "testURI://uberConnectNative"
let expectedLoginType = "China"
let expectedLoginType = "china"
let expectedSDK = "ios"
let expectedSDKVersion = versionNumber

Expand Down Expand Up @@ -140,7 +140,7 @@ class AuthenticationURLUtilityTests: XCTestCase {
let expectedClientID = "testClientID"
let expectedAppName = "My Awesome App"
let expectedCallbackURI = "testURI://uberConnectNative"
let expectedLoginType = "China"
let expectedLoginType = "china"
let expectedSDK = "ios"
let expectedSDKVersion = versionNumber

Expand Down

0 comments on commit 8667e5d

Please sign in to comment.