Skip to content

Commit 8186df0

Browse files
author
Scott Motte
committed
Merge pull request #42 from sendgrid/sm-smtpapi-1.0.0
Change to latest smtpapi 1.0.0
2 parents cb6c364 + 945d592 commit 8186df0

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class SendGridExample {
3131
Compile and run this example with
3232

3333
```bash
34-
$ javac -classpath sendgrid-1.2.0-jar.jar:. SendGridExample.java && java -classpath sendgrid-1.2.0-jar.jar:. SendGridExample
34+
$ javac -classpath sendgrid-1.2.1-jar.jar:. SendGridExample.java && java -classpath sendgrid-1.2.1-jar.jar:. SendGridExample
3535
```
3636

3737
## Installation
@@ -46,7 +46,7 @@ Add the following to your build.gradle file in the root of your project.
4646
...
4747
dependencies {
4848
...
49-
compile 'com.sendgrid:sendgrid-java:1.2.0'
49+
compile 'com.sendgrid:sendgrid-java:1.2.1'
5050
}
5151
5252
repositories {

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apply plugin: 'maven'
1717
apply plugin: 'signing'
1818

1919
group = 'com.sendgrid'
20-
version = "1.2.0"
20+
version = "1.2.1"
2121
ext.packaging = 'jar'
2222

2323
allprojects {
@@ -45,7 +45,7 @@ buildscript {
4545
}
4646

4747
dependencies {
48-
compile 'com.sendgrid:smtpapi-java:0.1.1'
48+
compile 'com.sendgrid:smtpapi-java:1.0.0'
4949
compile 'org.apache.httpcomponents:httpcore:4.3.2'
5050
compile 'org.apache.httpcomponents:httpclient:4.3.4'
5151
compile 'org.apache.httpcomponents:httpmime:4.3.4'

src/main/java/com/sendgrid/SendGrid.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import org.apache.http.entity.ContentType;
2929

3030
public class SendGrid {
31-
private static final String VERSION = "1.2.0";
31+
private static final String VERSION = "1.2.1";
3232
private static final String USER_AGENT = "sendgrid/" + VERSION + ";java";
3333

3434
private static final String PARAM_TO = "to[%d]";

0 commit comments

Comments
 (0)