File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11# Change Log
22All notable changes to this project will be documented in this file.
33
4+ ## [ 2.2.1] - 2015-5-14
5+ ### Changed
6+ - Update smtpapi-java to v1.2.0
7+
48## [ 2.2.0] - 2015-4-27
59### Added
610- Support for API keys
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class SendGridExample {
3535Compile and run this example with
3636
3737``` bash
38- $ javac -classpath sendgrid-2.2.0 -jar.jar:. SendGridExample.java && java -classpath sendgrid-2.2.0 -jar.jar:. SendGridExample
38+ $ javac -classpath sendgrid-2.2.1 -jar.jar:. SendGridExample.java && java -classpath sendgrid-2.2.1 -jar.jar:. SendGridExample
3939```
4040
4141## Installation
@@ -50,7 +50,7 @@ Add the following to your build.gradle file in the root of your project.
5050...
5151dependencies {
5252 ...
53- compile 'com.sendgrid:sendgrid-java:2.2.0 '
53+ compile 'com.sendgrid:sendgrid-java:2.2.1 '
5454}
5555
5656repositories {
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 = ' 2.2.0 '
20+ version = ' 2.2.1 '
2121ext. packaging = ' jar'
2222
2323allprojects {
Original file line number Diff line number Diff line change 2626import org .apache .http .entity .ContentType ;
2727
2828public class SendGrid {
29- private static final String VERSION = "2.2.0 " ;
29+ private static final String VERSION = "2.2.1 " ;
3030 private static final String USER_AGENT = "sendgrid/" + VERSION + ";java" ;
3131
3232 private static final String PARAM_TO = "to[%d]" ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class SendGridTest {
2323 @ Test
2424 public void testVersion () {
2525 SendGrid client = new SendGrid (USERNAME , PASSWORD );
26- assertEquals (client .getVersion (), "2.2.0 " );
26+ assertEquals (client .getVersion (), "2.2.1 " );
2727 }
2828
2929 @ Test
You can’t perform that action at this time.
0 commit comments