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 1
1
# Change Log
2
2
All notable changes to this project will be documented in this file.
3
3
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
+
4
8
## [ 2.2.1] - 2015-5-14
5
9
### Changed
6
10
- Update smtpapi-java to v1.2.0
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ apply plugin: 'maven'
17
17
apply plugin : ' signing'
18
18
19
19
group = ' com.sendgrid'
20
- version = ' 2.2.1 '
20
+ version = ' 2.2.2 '
21
21
ext. packaging = ' jar'
22
22
23
23
allprojects {
Original file line number Diff line number Diff line change 15
15
import java .util .*;
16
16
17
17
public class SendGrid {
18
- private static final String VERSION = "2.2.1 " ;
18
+ private static final String VERSION = "2.2.2 " ;
19
19
private static final String USER_AGENT = "sendgrid/" + VERSION + ";java" ;
20
20
21
21
private static final String PARAM_TO = "to[]" ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class SendGridTest {
23
23
@ Test
24
24
public void testVersion () {
25
25
SendGrid client = new SendGrid (USERNAME , PASSWORD );
26
- assertEquals (client .getVersion (), "2.2.1 " );
26
+ assertEquals (client .getVersion (), "2.2.2 " );
27
27
}
28
28
29
29
@ Test
You can’t perform that action at this time.
0 commit comments