Skip to content

Commit ab67081

Browse files
committed
Release 4.6.8
1 parent 7cf8b28 commit ab67081

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
@@ -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.7/sendgrid-4.6.7-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.7/sendgrid-4.6.7-jar.jar:. Example
101+
javac -classpath ../repo/com/sendgrid/4.6.8/sendgrid-4.6.8-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.8/sendgrid-4.6.8-jar.jar:. Example
102102
```
103103

104104
<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 4.6.7.**
13+
**The default branch name for this repository has been changed to `main` as of 4.6.8.**
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.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).
43+
- The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-java) to send up to 4.6.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).
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.7'
71+
implementation 'com.sendgrid:sendgrid-java:4.6.8'
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.7/sendgrid-java.jar)
90+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.8/sendgrid-java.jar)
9191

9292
## Dependencies
9393

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.7</version>
12+
<version>4.6.8</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.7</tag>
29+
<tag>4.6.8</tag>
3030
</scm>
3131
<profiles>
3232
<profile>
@@ -318,7 +318,7 @@
318318
<dependency>
319319
<groupId>org.bouncycastle</groupId>
320320
<artifactId>bcprov-jdk15on</artifactId>
321-
<version>1.66</version>
321+
<version>1.67</version>
322322
</dependency>
323323
</dependencies>
324324
<reporting>
@@ -330,4 +330,4 @@
330330
</plugin>
331331
</plugins>
332332
</reporting>
333-
</project>
333+
</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.7";
14+
private static final String VERSION = "4.6.8";
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.7");
46+
Assert.assertEquals(sg.getLibraryVersion(), "4.6.8");
4747
}
4848

4949
@Test

0 commit comments

Comments
 (0)