Skip to content

Commit 7591ceb

Browse files
Version Bump v4.3.0: Dynamic Template support
1 parent 4deb2f4 commit 7591ceb

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-9
lines changed

CHANGELOG.md

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

4+
## [4.3.0] - 2018-10-11
5+
### Added
6+
- [PR #449](https://github.com/sendgrid/sendgrid-java/pull/449/files): Dynamic Templates support -- BIG thanks to [Marcus Vinícius](https://github.com/Markuus13)
7+
- [PR #451](https://github.com/sendgrid/sendgrid-java/pull/451/files): Added CodeTriage tag -- BIG thanks to [Anshul Singhal](https://github.com/af4ro)
8+
- [PR #453](https://github.com/sendgrid/sendgrid-java/pull/453/files): Documentation readability update -- BIG thanks to [Anshul Singhal](https://github.com/af4ro)
9+
- [PR #461](https://github.com/sendgrid/sendgrid-java/pull/461/files): Update README to use implementation instead of compile -- BIG thanks to [Rosário Pereira Fernandes](https://github.com/rosariopfernandes)
10+
- [PR #463](https://github.com/sendgrid/sendgrid-java/pull/463/files): Link to the online version of CLA in README.md -- BIG thanks to [Bharat Raghunathan](https://github.com/Bharat123rox)
11+
12+
### Fix
13+
- [PR #358](https://github.com/sendgrid/sendgrid-java/pull/358): Fixing similar code issue in examples/ips/ips.java -- BIG thanks to [Julian Jacques Maurer](https://github.com/derjayjay)
14+
- [PR #475](https://github.com/sendgrid/sendgrid-java/pull/475): Fix formatting of README in examples/accesssettings -- BIG thanks to [Nathan Seebarran](https://github.com/nathan78906)
15+
416
## [4.2.1] - 2018-05-08
517
### Security Fix
618
- Update to latest Jackson recommended dependency, based on [this article](https://medium.com/@cowtowncoder/on-jackson-cves-dont-panic-here-is-what-you-need-to-know-54cd0d6e8062).

CONTRIBUTING.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
Hello! Thank you for choosing to help contribute to one of the SendGrid open source libraries. There are many ways you can contribute and help is always welcome. We simply ask that you follow the following contribution policies.
22

3-
- [CLAs and CCLAs](#cla)
4-
- [Roadmap & Milestones](#roadmap)
3+
- [CLAs and CCLAs](#clas-and-cclas)
54
- [Feature Request](#feature-request)
65
- [Submit a Bug Report](#submit-a-bug-report)
6+
- [Please use our Bug Report Template](#please-use-our-bug-report-template)
77
- [Improvements to the Codebase](#improvements-to-the-codebase)
8-
- [Understanding the Code Base](#understanding-the-codebase)
8+
- [Development Environment](#development-environment)
9+
- [Install and Run Locally](#install-and-run-locally)
10+
- [Prerequisites](#prerequisites)
11+
- [Initial setup:](#initial-setup)
12+
- [Environment Variables](#environment-variables)
13+
- [Execute:](#execute)
14+
- [Understanding the Code Base](#understanding-the-code-base)
915
- [Testing](#testing)
10-
- [Style Guidelines & Naming Conventions](#style-guidelines-and-naming-conventions)
16+
- [Style Guidelines & Naming Conventions](#style-guidelines--naming-conventions)
1117
- [Creating a Pull Request](#creating-a-pull-request)
1218

1319
<a name="roadmap"></a>
@@ -102,7 +108,7 @@ touch Example.java
102108
Add the example you want to test to Example.java, including the headers at the top of the file.
103109

104110
``` bash
105-
javac -classpath ../repo/com/sendgrid/4.2.1/sendgrid-4.2.1-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.2.1/sendgrid-4.2.1-jar.jar:. Example
111+
javac -classpath ../repo/com/sendgrid/4.3.0/sendgrid-4.3.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.3.0/sendgrid-4.3.0-jar.jar:. Example
106112
```
107113

108114
<a name="understanding-the-codebase"></a>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Add the following to your build.gradle file in the root of your project.
6767
...
6868
dependencies {
6969
...
70-
implementation 'com.sendgrid:sendgrid-java:4.2.1'
70+
implementation 'com.sendgrid:sendgrid-java:4.3.0'
7171
}
7272
7373
repositories {
@@ -86,7 +86,7 @@ mvn install
8686

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

89-
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/v4.2.1/sendgrid-java.jar)
89+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/v4.3.0/sendgrid-java.jar)
9090

9191
## Dependencies
9292

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 = '4.2.1'
20+
version = '4.3.0'
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>4.2.1</version>
12+
<version>4.3.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>

0 commit comments

Comments
 (0)