File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ touch Example.java
6969Add 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/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
72+ javac -classpath ../repo/com/sendgrid/4.10.2 /sendgrid-4.10.2 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.10.2 /sendgrid-4.10.2 -jar.jar:. Example
7373```
7474
7575<a name =" understanding-the-codebase " ></a >
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ Add the following to your build.gradle file in the root of your project.
6262...
6363dependencies {
6464 ...
65- implementation 'com.sendgrid:sendgrid-java:4.10.1 '
65+ implementation 'com.sendgrid:sendgrid-java:4.10.2 '
6666}
6767
6868repositories {
@@ -81,7 +81,7 @@ mvn install
8181
8282You 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/4.10.1 /sendgrid-java.jar )
84+ [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/4.10.2 /sendgrid-java.jar )
8585
8686## Dependencies
8787
Original file line number Diff line number Diff line change 99 <groupId >com.sendgrid</groupId >
1010 <artifactId >sendgrid-java</artifactId >
1111 <name >Twilio SendGrid Java helper library</name >
12- <version >4.10.1 </version >
12+ <version >4.10.2 </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 >
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.10.1 </tag >
29+ <tag >4.10.2 </tag >
3030 </scm >
3131 <profiles >
3232 <profile >
306306 </plugin >
307307 </plugins >
308308 </reporting >
309- </project >
309+ </project >
Original file line number Diff line number Diff line change 1111 */
1212public abstract class BaseInterface implements SendGridAPI {
1313
14- private static final String VERSION = "4.10.1 " ;
14+ private static final String VERSION = "4.10.2 " ;
1515
1616 private static final String USER_AGENT = "sendgrid/" + VERSION + ";java" ;
1717 private static final int RATE_LIMIT_RESPONSE_CODE = 429 ;
Original file line number Diff line number Diff 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.10.1 " );
46+ Assert .assertEquals (sg .getLibraryVersion (), "4.10.2 " );
4747 }
4848
4949 @ Test
You can’t perform that action at this time.
0 commit comments