From d63abb5f5e3a850292c6f95912122d3996131a41 Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Thu, 13 Apr 2017 16:12:15 -0700 Subject: [PATCH] Version Bump v3.2.1: #175 Simplified method. --- CHANGELOG.md | 6 ++++++ CONTRIBUTING.md | 2 +- README.md | 4 ++-- build.gradle | 2 +- pom.xml | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb1a6ca2..55ffa558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Change Log All notable changes to this project will be documented in this file. +## [3.2.1] - 2017-04-13 +### Added +- PR #175 +- Simplified `makeCall()` method. +- BIG thanks to [RafaƂ Wrzeszcz](https://github.com/rafalwrzeszcz) for the pull request! + ## [3.2.0] - 2017-03-22 ### Added - PR #160 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1d37e9a5..684993b1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -102,7 +102,7 @@ touch Example.java Add the example you want to test to Example.java, including the headers at the top of the file. ``` bash -javac -classpath ../repo/com/sendgrid/3.2.0/sendgrid-3.2.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.2.0/sendgrid-3.2.0-jar.jar:. Example +javac -classpath ../repo/com/sendgrid/3.2.1/sendgrid-3.2.1-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.2.1/sendgrid-3.2.1-jar.jar:. Example ``` diff --git a/README.md b/README.md index 906857bb..5fc2ec9f 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Add the following to your build.gradle file in the root of your project. ... dependencies { ... - compile 'com.sendgrid:sendgrid-java:3.2.0' + compile 'com.sendgrid:sendgrid-java:3.2.1' } repositories { @@ -78,7 +78,7 @@ mvn install You can just drop the jar file in. It's a fat jar - it has all the dependencies built in. -[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.2.0/sendgrid-java-3.2.0-jar.jar) +[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.2.1/sendgrid-java-3.2.1-jar.jar) ```java import com.sendgrid.*; diff --git a/build.gradle b/build.gradle index baab4f4a..324bbf30 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ apply plugin: 'maven' apply plugin: 'signing' group = 'com.sendgrid' -version = '3.2.0' +version = '3.2.1' ext.packaging = 'jar' allprojects { diff --git a/pom.xml b/pom.xml index ef07695a..e40fb8d8 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.sendgrid sendgrid-java SendGrid Java helper library - 3.2.0 + 3.2.1 This Java module allows you to quickly and easily send emails through SendGrid using Java. https://github.com/sendgrid/sendgrid-java