File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
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.2] - 2015-5-23
5+ ### Fixed
6+ - Subsitution orders being swapped via [ #65 ] ( https://github.com/sendgrid/sendgrid-java/pull/65 )
7+
48## [ 2.2.1] - 2015-5-14
59### Changed
610- Update smtpapi-java to v1.2.0
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.1 '
20+ version = ' 2.2.2 '
2121ext. packaging = ' jar'
2222
2323allprojects {
Original file line number Diff line number Diff line change 1515import java .util .*;
1616
1717public class SendGrid {
18- private static final String VERSION = "2.2.1 " ;
18+ private static final String VERSION = "2.2.2 " ;
1919 private static final String USER_AGENT = "sendgrid/" + VERSION + ";java" ;
2020
2121 private static final String PARAM_TO = "to[]" ;
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.1 " );
26+ assertEquals (client .getVersion (), "2.2.2 " );
2727 }
2828
2929 @ Test
You can’t perform that action at this time.
0 commit comments