File tree Expand file tree Collapse file tree
src/main/java/com/sendgrid Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public class SendGridExample {
3131Compile 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...
4747dependencies {
4848 ...
49- compile 'com.sendgrid:sendgrid-java:1.2.0 '
49+ compile 'com.sendgrid:sendgrid-java:1.2.1 '
5050}
5151
5252repositories {
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'maven'
1717apply plugin : ' signing'
1818
1919group = ' com.sendgrid'
20- version = " 1.2.0 "
20+ version = " 1.2.1 "
2121ext. packaging = ' jar'
2222
2323allprojects {
@@ -45,7 +45,7 @@ buildscript {
4545}
4646
4747dependencies {
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'
Original file line number Diff line number Diff line change 2828import org .apache .http .entity .ContentType ;
2929
3030public 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]" ;
You can’t perform that action at this time.
0 commit comments