Skip to content

Commit bec414f

Browse files
Version Bump v3.2.0: #160 Adds an attachment builder that supports InputStream content
1 parent 6c96eea commit bec414f

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [3.2.0] - 2017-03-22
5+
### Added
6+
- PR #160
7+
- [Enhancement] Adds an attachment builder that supports InputStream content
8+
- BIG thanks to [Dmitry Avershin](https://github.com/dmitraver) for the pull request!
9+
410
## [3.1.0] - 2016-10-11
511
### Added
612
- PR #158, Solves #138

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ touch Example.java
102102
Add the example you want to test to Example.java, including the headers at the top of the file.
103103

104104
``` bash
105-
javac -classpath ../repo/com/sendgrid/3.1.0/sendgrid-3.1.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.1.0/sendgrid-3.1.0-jar.jar:. Example
105+
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
106106
```
107107

108108
<a name="understanding_the_codebase"></a>

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Add the following to your build.gradle file in the root of your project.
5353
...
5454
dependencies {
5555
...
56-
compile 'com.sendgrid:sendgrid-java:3.1.0'
56+
compile 'com.sendgrid:sendgrid-java:3.2.0'
5757
}
5858
5959
repositories {
@@ -78,7 +78,7 @@ mvn install
7878

7979
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
8080

81-
[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.1.0/sendgrid-java-3.1.0-jar.jar)
81+
[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.2.0/sendgrid-java-3.2.0-jar.jar)
8282

8383
```java
8484
import com.sendgrid.*;

build.gradle

+1-1
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 = '3.1.0'
20+
version = '3.2.0'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>com.sendgrid</groupId>
1010
<artifactId>sendgrid-java</artifactId>
1111
<name>SendGrid Java helper library</name>
12-
<version>3.1.0</version>
12+
<version>3.2.0</version>
1313
<description>This Java module allows you to quickly and easily send emails through SendGrid using Java.</description>
1414
<url>https://github.com/sendgrid/sendgrid-java</url>
1515
<licenses>

src/main/java/com/sendgrid/helpers/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Run the [example](https://github.com/sendgrid/sendgrid-java/tree/master/examples
1010

1111
```bash
1212
cd examples/mail
13-
javac -classpath ../examples/jackson-annotations-2.7.0.jar:../examples/jackson-databind-2.7.3.jar:../examples/jackson-core-2.7.3.jar:../../build/libs/sendgrid-3.0.0-jar.jar:. Example.java && java -classpath ../examples/jackson-annotations-2.7.0.jar:../examples/jackson-databind-2.7.3.jar:../examples/jackson-core-2.7.3.jar:../../build/libs/sendgrid-3.0.0-jar.jar:. Example
13+
javac -classpath ../../build/libs/sendgrid-3.2.0-jar.jar:. Example.java && java -classpath ../examples/jackson-core-2.7.3.jar:../../build/libs/sendgrid-3.2.0-jar.jar:. Example
1414
```
1515

1616
## Usage

0 commit comments

Comments
 (0)