Skip to content

Commit

Permalink
Release 4.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
twilio-dx committed Nov 17, 2023
1 parent 1692a4e commit 511e7f7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -69,7 +69,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.10.0/sendgrid-4.10.0-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.10.0/sendgrid-4.10.0-jar.jar:. Example
javac -classpath ../repo/com/sendgrid/4.10.1/sendgrid-4.10.1-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.10.1/sendgrid-4.10.1-jar.jar:. Example
```

<a name="understanding-the-codebase"></a>
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -62,7 +62,7 @@ Add the following to your build.gradle file in the root of your project.
...
dependencies {
...
implementation 'com.sendgrid:sendgrid-java:4.10.0'
implementation 'com.sendgrid:sendgrid-java:4.10.1'
}
repositories {
Expand All @@ -81,7 +81,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.10.0/sendgrid-java.jar)
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/4.10.1/sendgrid-java.jar)

## Dependencies

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -9,7 +9,7 @@
<groupId>com.sendgrid</groupId>
<artifactId>sendgrid-java</artifactId>
<name>Twilio SendGrid Java helper library</name>
<version>4.10.0</version>
<version>4.10.1</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:git@github.com:sendgrid/sendgrid-java.git</connection>
<developerConnection>scm:git:git@github.com:sendgrid/sendgrid-java.git</developerConnection>
<tag>4.10.0</tag>
<tag>4.10.1</tag>
</scm>
<profiles>
<profile>
Expand Down Expand Up @@ -306,4 +306,4 @@
</plugin>
</plugins>
</reporting>
</project>
</project>
2 changes: 1 addition & 1 deletion src/main/java/com/sendgrid/BaseInterface.java
Expand Up @@ -11,7 +11,7 @@
*/
public abstract class BaseInterface implements SendGridAPI {

private static final String VERSION = "4.10.0";
private static final String VERSION = "4.10.1";

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
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.10.0");
Assert.assertEquals(sg.getLibraryVersion(), "4.10.1");
}

@Test
Expand Down

0 comments on commit 511e7f7

Please sign in to comment.