Skip to content

Commit d6ca1b4

Browse files
Version Bump v3.0.9: Added TOC to README, Added USE_CASES.md
1 parent 8c4c157 commit d6ca1b4

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [3.0.9] - 2016-08-24
5+
### Added
6+
- Table of Contents in the README
7+
- Added a [USE_CASES.md](https://github.com/sendgrid/sendgrid-java/blob/master/USE_CASES.md) section, with the first use case example for transactional templates
8+
49
## [3.0.8] - 2016-08-09
510
### Fixed
611
- Updated dependency for [java-http-client](https://github.com/sendgrid/java-http-client/releases/tag/v2.3.4)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
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.0.8/sendgrid-3.0.8-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.8/sendgrid-3.0.8-jar.jar:. Example
105+
javac -classpath ../repo/com/sendgrid/3.0.9/sendgrid-3.0.9-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/3.0.9/sendgrid-3.0.9-jar.jar:. Example
106106
```
107107

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add the following to your build.gradle file in the root of your project.
5151
...
5252
dependencies {
5353
...
54-
compile 'com.sendgrid:sendgrid-java:3.0.8'
54+
compile 'com.sendgrid:sendgrid-java:3.0.9'
5555
}
5656
5757
repositories {
@@ -76,7 +76,7 @@ mvn install
7676

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

79-
[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.8/sendgrid-java-3.0.8-jar.jar)
79+
[sendgrid-java.jar](http://repo1.maven.org/maven2/com/sendgrid/sendgrid-java/3.0.9/sendgrid-java-3.0.9-jar.jar)
8080

8181
```java
8282
import com.sendgrid.*;

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 = '3.0.8'
20+
version = '3.0.9'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

pom.xml

Lines changed: 1 addition & 1 deletion
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.0.8</version>
12+
<version>3.0.9</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>

0 commit comments

Comments
 (0)