Skip to content

Commit

Permalink
[Gradle Release Plugin] - pre tag commit: 'v0.3.0'.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Texter committed May 13, 2016
1 parent e096a2c commit 2c9ea59
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.3.0 - 5/9/2016
------------------
- Merged #7
- Merged #10

v0.2.0 - 2/25/2016
------------------
- Updated to cover new endpoints and scopes.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Note: This Java SDK is not suitable for Android development. We will release an
If using Gradle, add this to your project’s `build.gradle` file:
```gradle
dependencies {
compile 'com.uber.sdk:rides:0.2.0'
compile 'com.uber.sdk:rides:0.3.0'
}
```

Expand All @@ -24,7 +24,7 @@ If using Maven, add this to your project's `pom.xml` file:
<dependency>
<groupId>com.uber.sdk</groupId>
<artifactId>rides</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ group=com.uber.sdk
groupId=com.uber.sdk
artifactId=rides
githubDownloadPrefix=https://github.com/uber/rides-java-sdk/releases/download/
version=0.2.1-SNAPSHOT
version=0.3.0
2 changes: 1 addition & 1 deletion samples/cmdline-sample/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
description=Command line sample
description=Command line sample
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
*/
public class RetrofitUberRidesClient {

@VisibleForTesting static final String LIB_VERSION = "0.2.0";
@VisibleForTesting static final String LIB_VERSION = "0.3.0";

/**
* Gets a new Uber API service client.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ void setPlace(@Nonnull @Path("place_id") String placeId,
void getRideDetails(@Nonnull @Path("request_id") String rideId, Callback<Ride> callback);

/**
* Get receipt information for a completed request.<br/>
* Get receipt information for a completed request.
* Access to this endpoint is restricted and requires whitelisting.
*
* @param rideId The unique identifier for a ride.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

package com.uber.sdk.rides.client.model;

import java.util.List;
Expand Down Expand Up @@ -71,15 +70,15 @@ public String getSubTotal() {
}

/**
* Gets the total amount charged to the users payment method.<br/>
* Gets the total amount charged to the users payment method.
* This is the the subtotal (split if applicable) with taxes included.
*/
public String getTotalCharged() {
return total_charged;
}

/**
* Gets the total amount still owed after attempting to charge the user.<br/>
* Gets the total amount still owed after attempting to charge the user.
* May be {@code null} if amount was paid in full.
*/
@Nullable
Expand Down

0 comments on commit 2c9ea59

Please sign in to comment.