Skip to content

Commit c01ba9e

Browse files
author
Kevin Burke
committed
Bump version to 3.3.16
1 parent d6c347c commit c01ba9e

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
[![Build Status](https://travis-ci.org/twilio/twilio-java.png?branch=master)](https://travis-ci.org/twilio/twilio-java)
22

3-
# Installing
3+
# Installing
44

5-
TwilioJava is now using Maven. At present the jars *are* available from a public [maven](http://maven.apache.org/download.html) repository.
5+
TwilioJava is now using Maven. At present the jars *are* available from a public [maven](http://maven.apache.org/download.html) repository.
66

77
Use the following dependency in your project:
88

99
<dependency>
1010
<groupId>com.twilio.sdk</groupId>
1111
<artifactId>twilio-java-sdk</artifactId>
12-
<version>3.3.15</version>
12+
<version>3.3.16</version>
1313
<scope>compile</scope>
1414
</dependency>
1515

1616
If you want to compile it yourself, here's how:
1717

1818
$ git clone git@github.com:twilio/twilio-java
19-
$ cd twilio-java
19+
$ cd twilio-java
2020
$ mvn install # Requires maven, download from http://maven.apache.org/download.html
2121

2222
This will also build the javadoc in `twilio-java/target/apidocs`. You can open the
2323
index.html located there to view it locally.
2424

25-
The pre-built jars are available at:
25+
The pre-built jars are available at:
2626

2727
* [twilio-java-sdk-3.3.15-with-dependencies.jar](http://search.maven.org/remotecontent?filepath=com/twilio/sdk/twilio-java-sdk/3.3.15/twilio-java-sdk-3.3.15-jar-with-dependencies.jar)
2828
* [twilio-java-sdk-3.3.15.jar](http://search.maven.org/remotecontent?filepath=com/twilio/sdk/twilio-java-sdk/3.3.15/twilio-java-sdk-3.3.15.jar) -- use this if you have issues with conflicting jars in your project. You'll need to include versions of the dependencies yourself. See the pom.xml for the list of libraries.
@@ -32,7 +32,7 @@ You can view the javadocs for this project at:
3232

3333
# Examples
3434

35-
Here are some examples (also found in [TwilioRestExamples.java](https://github.com/twilio/twilio-java/blob/master/src/main/java/com/twilio/sdk/examples/RestExamples.java) )
35+
Here are some examples (also found in [TwilioRestExamples.java](https://github.com/twilio/twilio-java/blob/master/src/main/java/com/twilio/sdk/examples/RestExamples.java) )
3636

3737
```java
3838
package com.twilio.sdk.examples;

src/main/java/com/twilio/sdk/TwilioRestClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
public class TwilioRestClient {
4646

4747
/** The Constant VERSION. */
48-
private static final String VERSION = "3.3.15";
48+
private static final String VERSION = "3.3.16";
4949

5050
/** The endpoint. */
5151
private String endpoint = "https://api.twilio.com";
@@ -95,7 +95,7 @@ public void setNumRetries(int numRetries) {
9595
public void setHttpclient(HttpClient httpclient) {
9696
this.httpclient = httpclient;
9797
}
98-
98+
9999
public HttpClient getHttpClient() {
100100
return httpclient;
101101
}

0 commit comments

Comments
 (0)