Skip to content

Commit

Permalink
Update version to 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jameseunson committed Apr 10, 2019
1 parent 5fefa2d commit 2b93233
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [0.12.0] 2019-04-10

* [Pull #257](https://github.com/uber/rides-ios-sdk/pull/257) Added token_type property support to AccessToken model

## [0.11.0] 2018-10-22

0.11 updates the Uber Rides SDK for Xcode 10/Swift 4.2 compatibility. ([Pull #245](https://github.com/uber/rides-ios-sdk/pull/245), thanks @rmuhamedgaliev!)
Expand Down
2 changes: 1 addition & 1 deletion PodspecShared.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
def configure_podspec(spec, module_name)
spec.name = module_name
spec.version = "0.11.0"
spec.version = "0.12.0"
spec.summary = "The Official Uber Rides iOS SDK."
spec.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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ This [Swift library](https://developer.apple.com/library/ios/documentation/Gener
To install the Uber Rides SDK, you may use [CocoaPods](http://cocoapods.org), [Carthage](https://github.com/Carthage/Carthage), or add it to your project manually

```ruby
pod 'UberRides', '~> 0.11'
pod 'UberRides', '~> 0.12'
```

### Carthage
```
github "uber/rides-ios-sdk" ~> 0.11
github "uber/rides-ios-sdk" ~> 0.12
```

## Getting Started
Expand Down Expand Up @@ -306,7 +306,7 @@ If you want to provide a more custom experience in your app, there are a few cla
### Uber Rides API Endpoints
The SDK exposes all the endpoints available in the [Uber Developers documentation](https://developer.uber.com/docs). Some endpoints can be authenticated with a server token, but for most endpoints, you will require a bearer token. A bearer token can be retrieved via implicit grant, authorization code grant, or SSO. To authorize [privileged scopes](https://developer.uber.com/docs/scopes#section-privileged-scopes), you must use authorization code grant or SSO.
Read the full API documentation at [CocoaDocs](http://cocoadocs.org/docsets/UberRides/0.11.0/)
Read the full API documentation at [CocoaDocs](http://cocoadocs.org/docsets/UberRides/0.12.0/)
The `RidesClient` is your source to access all the endpoints available in the Uber Rides API. With just your server token, you can get a list of Uber products as well as price and time estimates.
Expand Down
2 changes: 1 addition & 1 deletion source/UberCore/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>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
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.11.0</string>
<string>0.12.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 2b93233

Please sign in to comment.