Skip to content

Commit 810be07

Browse files
committed
Release 4.5.0
1 parent 83e58d3 commit 810be07

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CONTRIBUTING.md

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

103103
``` bash
104-
javac -classpath ../repo/com/sendgrid/4.4.8/sendgrid-4.4.8-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.4.8/sendgrid-4.4.8-jar.jar:. Example
104+
javac -classpath ../repo/com/sendgrid/4.5.0/sendgrid-4.5.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.5.0/sendgrid-4.5.0-jar.jar:. Example
105105
```
106106

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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ We appreciate your continued support, thank you!
3939
## Prerequisites
4040

4141
- Java version Oracle JDK 7, 8 or OpenJDK 7
42-
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.4.8 emails for the first 30 days, then send 100 emails/day free forever or check out [our pricing](https://sendgrid.com/pricing?source=sendgrid-java).
42+
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.5.0 emails for the first 30 days, then send 100 emails/day free forever or check out [our pricing](https://sendgrid.com/pricing?source=sendgrid-java).
4343

4444
## Setup Environment Variables
4545

@@ -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.4.8'
70+
implementation 'com.sendgrid:sendgrid-java:4.5.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/4.4.8/sendgrid-java.jar)
89+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.5.0/sendgrid-java.jar)
9090

9191
## Dependencies
9292

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<groupId>com.sendgrid</groupId>
1010
<artifactId>sendgrid-java</artifactId>
1111
<name>Twilio SendGrid Java helper library</name>
12-
<version>4.4.8</version>
12+
<version>4.5.0</version>
1313
<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>
@@ -26,7 +26,7 @@
2626
<url>https://github.com/sendgrid/sendgrid-java</url>
2727
<connection>scm:git:[email protected]:sendgrid/sendgrid-java.git</connection>
2828
<developerConnection>scm:git:[email protected]:sendgrid/sendgrid-java.git</developerConnection>
29-
<tag>4.4.8</tag>
29+
<tag>4.5.0</tag>
3030
</scm>
3131
<profiles>
3232
<profile>
@@ -303,10 +303,10 @@
303303
<version>2.1.0</version>
304304
<scope>test</scope>
305305
</dependency>
306-
<dependency>
307-
<groupId>org.bouncycastle</groupId>
308-
<artifactId>bcprov-jdk15on</artifactId>
309-
<version>1.65</version>
310-
</dependency>
306+
<dependency>
307+
<groupId>org.bouncycastle</groupId>
308+
<artifactId>bcprov-jdk15on</artifactId>
309+
<version>1.65</version>
310+
</dependency>
311311
</dependencies>
312312
</project>

src/main/java/com/sendgrid/BaseInterface.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*/
1212
public abstract class BaseInterface implements SendGridAPI {
1313

14-
private static final String VERSION = "3.0.0";
14+
private static final String VERSION = "4.5.0";
1515

1616
private static final String USER_AGENT = "sendgrid/" + VERSION + ";java";
1717
private static final int RATE_LIMIT_RESPONSE_CODE = 429;

0 commit comments

Comments
 (0)