Skip to content

Commit 8db137f

Browse files
committed
Release 4.6.7
1 parent afcd7f5 commit 8db137f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ touch Example.java
9898
Add the example you want to test to Example.java, including the headers at the top of the file.
9999

100100
``` bash
101-
javac -classpath ../repo/com/sendgrid/4.6.6/sendgrid-4.6.6-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.6/sendgrid-4.6.6-jar.jar:. Example
101+
javac -classpath ../repo/com/sendgrid/4.6.7/sendgrid-4.6.7-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.7/sendgrid-4.6.7-jar.jar:. Example
102102
```
103103

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

README.md

+4-4
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 4.6.6.**
13+
**The default branch name for this repository has been changed to `main` as of 4.6.7.**
1414

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

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

4242
- Java 8 or 11
43-
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.6.6 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).
43+
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.6.7 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).
4444

4545
## Setup Environment Variables
4646

@@ -68,7 +68,7 @@ Add the following to your build.gradle file in the root of your project.
6868
...
6969
dependencies {
7070
...
71-
implementation 'com.sendgrid:sendgrid-java:4.6.6'
71+
implementation 'com.sendgrid:sendgrid-java:4.6.7'
7272
}
7373
7474
repositories {
@@ -87,7 +87,7 @@ mvn install
8787

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

90-
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.6/sendgrid-java.jar)
90+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.7/sendgrid-java.jar)
9191

9292
## Dependencies
9393

pom.xml

+2-2
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.6</version>
12+
<version>4.6.7</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.6</tag>
29+
<tag>4.6.7</tag>
3030
</scm>
3131
<profiles>
3232
<profile>

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

+1-1
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.6";
14+
private static final String VERSION = "4.6.7";
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

+1-1
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.6");
46+
Assert.assertEquals(sg.getLibraryVersion(), "4.6.7");
4747
}
4848

4949
@Test

0 commit comments

Comments
 (0)