Skip to content

Commit dab55d2

Browse files
committed
Release 5.0.0-rc.13
1 parent 4fb107b commit dab55d2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ touch Example.java
6969
Add the example you want to test to Example.java, including the headers at the top of the file.
7070

7171
``` bash
72-
javac -classpath ../repo/com/sendgrid/5.0.0-rc.12/sendgrid-5.0.0-rc.12-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/5.0.0-rc.12/sendgrid-5.0.0-rc.12-jar.jar:. Example
72+
javac -classpath ../repo/com/sendgrid/5.0.0-rc.13/sendgrid-5.0.0-rc.13-jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/5.0.0-rc.13/sendgrid-5.0.0-rc.13-jar.jar:. Example
7373
```
7474

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Add the following to your build.gradle file in the root of your project.
6262
...
6363
dependencies {
6464
...
65-
implementation 'com.sendgrid:sendgrid-java:5.0.0-rc.12'
65+
implementation 'com.sendgrid:sendgrid-java:5.0.0-rc.13'
6666
}
6767
6868
repositories {
@@ -81,7 +81,7 @@ mvn install
8181

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

84-
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/5.0.0-rc.12/sendgrid-java.jar)
84+
[sendgrid-java.jar](https://github.com/sendgrid/sendgrid-java/releases/download/5.0.0-rc.13/sendgrid-java.jar)
8585

8686
## Dependencies
8787

pom.xml

Lines changed: 2 additions & 2 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>5.0.0-rc.12</version>
12+
<version>5.0.0-rc.13</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>5.0.0-rc.12</tag>
29+
<tag>5.0.0-rc.13</tag>
3030
</scm>
3131
<profiles>
3232
<profile>

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(), "5.0.0-rc.12");
46+
Assert.assertEquals(sg.getLibraryVersion(), "5.0.0-rc.13");
4747
}
4848

4949
@Test

0 commit comments

Comments
 (0)