Skip to content

Commit c2ea835

Browse files
committed
Version bump v2.2.1
1 parent d7591c8 commit c2ea835

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
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.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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class SendGridExample {
3535
Compile 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
...
5151
dependencies {
5252
...
53-
compile 'com.sendgrid:sendgrid-java:2.2.0'
53+
compile 'com.sendgrid:sendgrid-java:2.2.1'
5454
}
5555
5656
repositories {

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.0'
20+
version = '2.2.1'
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
@@ -26,7 +26,7 @@
2626
import org.apache.http.entity.ContentType;
2727

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

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.0");
26+
assertEquals(client.getVersion(), "2.2.1");
2727
}
2828

2929
@Test

0 commit comments

Comments
 (0)