Skip to content

Commit 945d592

Browse files
committed
Version bump 1.2.1
1 parent 60f1ed1 commit 945d592

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class SendGridExample {
3131
Compile and run this example with
3232

3333
```bash
34-
$ javac -classpath sendgrid-1.2.0-jar.jar:. SendGridExample.java && java -classpath sendgrid-1.2.0-jar.jar:. SendGridExample
34+
$ javac -classpath sendgrid-1.2.1-jar.jar:. SendGridExample.java && java -classpath sendgrid-1.2.1-jar.jar:. SendGridExample
3535
```
3636

3737
## Installation
@@ -46,7 +46,7 @@ Add the following to your build.gradle file in the root of your project.
4646
...
4747
dependencies {
4848
...
49-
compile 'com.sendgrid:sendgrid-java:1.2.0'
49+
compile 'com.sendgrid:sendgrid-java:1.2.1'
5050
}
5151
5252
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 = "1.2.0"
20+
version = "1.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
@@ -28,7 +28,7 @@
2828
import org.apache.http.entity.ContentType;
2929

3030
public class SendGrid {
31-
private static final String VERSION = "1.2.0";
31+
private static final String VERSION = "1.2.1";
3232
private static final String USER_AGENT = "sendgrid/" + VERSION + ";java";
3333

3434
private static final String PARAM_TO = "to[%d]";

0 commit comments

Comments
 (0)