Skip to content

Commit b64988f

Browse files
committed
Version bump 2.2.2
1 parent b3564d3 commit b64988f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All 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

build.gradle

Lines changed: 1 addition & 1 deletion
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 = '2.2.1'
20+
version = '2.2.2'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import java.util.*;
1616

1717
public 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[]";

src/test/java/com/sendgrid/SendGridTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)