Skip to content

Commit ba5464b

Browse files
Version Bump v4.4.0: Twilio Branding Update + other updates
1 parent 3d5c483 commit ba5464b

6 files changed

Lines changed: 23 additions & 9 deletions

File tree

CHANGELOG.md

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

4+
## [4.4.0] - 2019-05-20
5+
### Added
6+
- [PR #500](https://github.com/sendgrid/sendgrid-java/pull/500/files): Update CONTRIBUTING.md - using gitflow workflow, development branch instead of master -- BIG thanks to [Alex](https://github.com/pushkyn)
7+
- [PR #521](https://github.com/sendgrid/sendgrid-java/pull/521/files): Updating prerequisites -- BIG thanks to [Rishabh](https://github.com/Rishabh04-02)
8+
- [PR #495](https://github.com/sendgrid/sendgrid-java/pull/495/files): Add ability to impersonate subusers -- BIG thanks to [Rohit Tarachandani](https://github.com/Rohit-T)
9+
- [PR #569](https://github.com/sendgrid/sendgrid-java/pull/495/files): Twilio Branding + CLA Policy Update
10+
11+
### Fix
12+
- [PR #497](https://github.com/sendgrid/sendgrid-java/pull/497): USE_CASES.md was missing the subject in the template and the dynamic data for the subject -- BIG thanks to [Kyle Roberts](https://github.com/kylearoberts)
13+
- [PR #306](https://github.com/sendgrid/sendgrid-java/pull/306): Java packages were not corresponding to the actual location of classes,
14+
all packages were update to match class location -- BIG thanks to [Bojan Trajkovski](https://github.com/btrajkovski)
15+
- [PR #544](https://github.com/sendgrid/sendgrid-java/pull/544): Remove references to "Whitelabel" -- BIG thanks to [Chandler Weiner](https://github.com/crweiner)
16+
- [PR #507](https://github.com/sendgrid/sendgrid-java/pull/507): Update TROUBLESHOOTING.md broken link -- BIG thanks to [Andrew Joshua Loria](https://github.com/ajloria)
17+
418
## [4.3.0] - 2018-10-11
519
### Added
620
- [PR #449](https://github.com/sendgrid/sendgrid-java/pull/449/files): Dynamic Templates support -- BIG thanks to [Marcus Vinícius](https://github.com/Markuus13)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ touch Example.java
100100
Add the example you want to test to Example.java, including the headers at the top of the file.
101101

102102
``` bash
103-
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
103+
javac -classpath ../repo/com/sendgrid/4.4.0/sendgrid-4.4.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.4.0/sendgrid-4.4.0-jar.jar:. Example
104104
```
105105

106106
<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.3.0'
70+
implementation 'com.sendgrid:sendgrid-java:4.4.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.3.0/sendgrid-java.jar)
89+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/v4.4.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.3.0'
20+
version = '4.4.0'
2121
ext.packaging = 'jar'
2222

2323
allprojects {

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ RUN yum install -y git
66

77
WORKDIR /root
88

9-
# Install Prism
10-
ADD https://raw.githubusercontent.com/stoplightio/prism/master/install.sh install.sh
9+
# install Prism
10+
ADD https://raw.githubusercontent.com/stoplightio/prism/master/install install.sh
1111
RUN chmod +x ./install.sh && \
1212
./install.sh && \
1313
rm ./install.sh

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
</parent>
99
<groupId>com.sendgrid</groupId>
1010
<artifactId>sendgrid-java</artifactId>
11-
<name>SendGrid Java helper library</name>
12-
<version>4.3.0</version>
13-
<description>This Java module allows you to quickly and easily send emails through SendGrid using Java.</description>
11+
<name>Twilio SendGrid Java helper library</name>
12+
<version>4.4.0</version>
13+
<description>This Java module allows you to quickly and easily send emails through Twilio SendGrid using Java.</description>
1414
<url>https://github.com/sendgrid/sendgrid-java</url>
1515
<licenses>
1616
<license>

0 commit comments

Comments
 (0)