Skip to content

Commit 2c9ea59

Browse files
author
Alex Texter
committed
[Gradle Release Plugin] - pre tag commit: 'v0.3.0'.
1 parent e096a2c commit 2c9ea59

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v0.3.0 - 5/9/2016
2+
------------------
3+
- Merged #7
4+
- Merged #10
5+
16
v0.2.0 - 2/25/2016
27
------------------
38
- Updated to cover new endpoints and scopes.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Note: This Java SDK is not suitable for Android development. We will release an
1414
If using Gradle, add this to your project’s `build.gradle` file:
1515
```gradle
1616
dependencies {
17-
compile 'com.uber.sdk:rides:0.2.0'
17+
compile 'com.uber.sdk:rides:0.3.0'
1818
}
1919
```
2020

@@ -24,7 +24,7 @@ If using Maven, add this to your project's `pom.xml` file:
2424
<dependency>
2525
<groupId>com.uber.sdk</groupId>
2626
<artifactId>rides</artifactId>
27-
<version>0.2.0</version>
27+
<version>0.3.0</version>
2828
</dependency>
2929
```
3030

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ group=com.uber.sdk
22
groupId=com.uber.sdk
33
artifactId=rides
44
githubDownloadPrefix=https://github.com/uber/rides-java-sdk/releases/download/
5-
version=0.2.1-SNAPSHOT
5+
version=0.3.0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
description=Command line sample
1+
description=Command line sample

sdk/src/main/java/com/uber/sdk/rides/client/internal/RetrofitUberRidesClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
*/
6262
public class RetrofitUberRidesClient {
6363

64-
@VisibleForTesting static final String LIB_VERSION = "0.2.0";
64+
@VisibleForTesting static final String LIB_VERSION = "0.3.0";
6565

6666
/**
6767
* Gets a new Uber API service client.

sdk/src/main/java/com/uber/sdk/rides/client/internal/RetrofitUberRidesService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ void setPlace(@Nonnull @Path("place_id") String placeId,
228228
void getRideDetails(@Nonnull @Path("request_id") String rideId, Callback<Ride> callback);
229229

230230
/**
231-
* Get receipt information for a completed request.<br/>
231+
* Get receipt information for a completed request.
232232
* Access to this endpoint is restricted and requires whitelisting.
233233
*
234234
* @param rideId The unique identifier for a ride.

sdk/src/main/java/com/uber/sdk/rides/client/model/RideReceipt.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
package com.uber.sdk.rides.client.model;
32

43
import java.util.List;
@@ -71,15 +70,15 @@ public String getSubTotal() {
7170
}
7271

7372
/**
74-
* Gets the total amount charged to the users payment method.<br/>
73+
* Gets the total amount charged to the users payment method.
7574
* This is the the subtotal (split if applicable) with taxes included.
7675
*/
7776
public String getTotalCharged() {
7877
return total_charged;
7978
}
8079

8180
/**
82-
* Gets the total amount still owed after attempting to charge the user.<br/>
81+
* Gets the total amount still owed after attempting to charge the user.
8382
* May be {@code null} if amount was paid in full.
8483
*/
8584
@Nullable

0 commit comments

Comments
 (0)