Skip to content

Commit 7e64e54

Browse files
committed
Release 4.6.3
1 parent 915c5ce commit 7e64e54

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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.6.2/sendgrid-4.6.2-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.2/sendgrid-4.6.2-jar.jar:. Example
104+
javac -classpath ../repo/com/sendgrid/4.6.3/sendgrid-4.6.3-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.3/sendgrid-4.6.3-jar.jar:. Example
105105
```
106106

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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
**NEW:** Subscribe to email [notifications](https://dx.sendgrid.com/newsletter/java) for releases and breaking changes.
1212

13-
**The default branch name for this repository has been changed to `main` as of 07/27/2020.**
13+
**The default branch name for this repository has been changed to `main` as of 4.6.3.**
1414

1515
**This library allows you to quickly and easily use the Twilio SendGrid Web API v3 via Java.**
1616

@@ -41,7 +41,7 @@ We appreciate your continued support, thank you!
4141
## Prerequisites
4242

4343
- Java version Oracle JDK 7, 8 or OpenJDK 7
44-
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.6.2 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).
44+
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.6.3 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).
4545

4646
## Setup Environment Variables
4747

@@ -69,7 +69,7 @@ Add the following to your build.gradle file in the root of your project.
6969
...
7070
dependencies {
7171
...
72-
implementation 'com.sendgrid:sendgrid-java:4.6.2'
72+
implementation 'com.sendgrid:sendgrid-java:4.6.3'
7373
}
7474
7575
repositories {
@@ -88,7 +88,7 @@ mvn install
8888

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

91-
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.2/sendgrid-java.jar)
91+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.3/sendgrid-java.jar)
9292

9393
## Dependencies
9494

pom.xml

Lines changed: 4 additions & 4 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.6.2</version>
12+
<version>4.6.3</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.6.2</tag>
29+
<tag>4.6.3</tag>
3030
</scm>
3131
<profiles>
3232
<profile>
@@ -274,7 +274,7 @@
274274
<dependency>
275275
<groupId>com.sendgrid</groupId>
276276
<artifactId>java-http-client</artifactId>
277-
<version>4.3.3</version>
277+
<version>4.3.4</version>
278278
</dependency>
279279
<dependency>
280280
<groupId>com.fasterxml.jackson.core</groupId>
@@ -309,4 +309,4 @@
309309
<version>1.66</version>
310310
</dependency>
311311
</dependencies>
312-
</project>
312+
</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 = "4.6.2";
14+
private static final String VERSION = "4.6.3";
1515

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

src/test/java/com/sendgrid/SendGridTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void testConstructWithClient() throws IOException {
4343
@Test
4444
public void testLibraryVersion() {
4545
SendGrid sg = new SendGrid(SENDGRID_API_KEY);
46-
Assert.assertEquals(sg.getLibraryVersion(), "4.6.2");
46+
Assert.assertEquals(sg.getLibraryVersion(), "4.6.3");
4747
}
4848

4949
@Test

0 commit comments

Comments
 (0)