Skip to content

Commit

Permalink
Release 4.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-ci committed Sep 16, 2020
1 parent 47783dd commit ad48e14
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ touch Example.java
Add the example you want to test to Example.java, including the headers at the top of the file.

``` bash
javac -classpath ../repo/com/sendgrid/4.6.4/sendgrid-4.6.4-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.4/sendgrid-4.6.4-jar.jar:. Example
javac -classpath ../repo/com/sendgrid/4.6.5/sendgrid-4.6.5-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.6.5/sendgrid-4.6.5-jar.jar:. Example
```

<a name="understanding-the-codebase"></a>
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

**The default branch name for this repository has been changed to `main` as of 4.6.4.**
**The default branch name for this repository has been changed to `main` as of 4.6.5.**

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

Expand Down Expand Up @@ -40,7 +40,7 @@ We appreciate your continued support, thank you!
## Prerequisites

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

## Setup Environment Variables

Expand Down Expand Up @@ -68,7 +68,7 @@ Add the following to your build.gradle file in the root of your project.
...
dependencies {
...
implementation 'com.sendgrid:sendgrid-java:4.6.4'
implementation 'com.sendgrid:sendgrid-java:4.6.5'
}
repositories {
Expand All @@ -87,7 +87,7 @@ mvn install

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

[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.4/sendgrid-java.jar)
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.6.5/sendgrid-java.jar)

## Dependencies

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<groupId>com.sendgrid</groupId>
<artifactId>sendgrid-java</artifactId>
<name>Twilio SendGrid Java helper library</name>
<version>4.6.4</version>
<version>4.6.5</version>
<description>This Java module allows you to quickly and easily send emails through Twilio SendGrid using Java.</description>
<url>https://github.com/sendgrid/sendgrid-java</url>
<licenses>
Expand All @@ -26,7 +26,7 @@
<url>https://github.com/sendgrid/sendgrid-java</url>
<connection>scm:git:[email protected]:sendgrid/sendgrid-java.git</connection>
<developerConnection>scm:git:[email protected]:sendgrid/sendgrid-java.git</developerConnection>
<tag>4.6.4</tag>
<tag>4.6.5</tag>
</scm>
<profiles>
<profile>
Expand Down Expand Up @@ -286,7 +286,7 @@
<dependency>
<groupId>com.sendgrid</groupId>
<artifactId>java-http-client</artifactId>
<version>4.3.5</version>
<version>4.3.6</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/sendgrid/BaseInterface.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/
public abstract class BaseInterface implements SendGridAPI {

private static final String VERSION = "4.6.4";
private static final String VERSION = "4.6.5";

private static final String USER_AGENT = "sendgrid/" + VERSION + ";java";
private static final int RATE_LIMIT_RESPONSE_CODE = 429;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/sendgrid/SendGridTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void testConstructWithClient() throws IOException {
@Test
public void testLibraryVersion() {
SendGrid sg = new SendGrid(SENDGRID_API_KEY);
Assert.assertEquals(sg.getLibraryVersion(), "4.6.4");
Assert.assertEquals(sg.getLibraryVersion(), "4.6.5");
}

@Test
Expand Down

0 comments on commit ad48e14

Please sign in to comment.