File tree 5 files changed +8
-8
lines changed
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ touch Example.java
69
69
Add the example you want to test to Example.java, including the headers at the top of the file.
70
70
71
71
``` 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
73
73
```
74
74
75
75
<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.
62
62
...
63
63
dependencies {
64
64
...
65
- implementation 'com.sendgrid:sendgrid-java:4.10.1 '
65
+ implementation 'com.sendgrid:sendgrid-java:4.10.2 '
66
66
}
67
67
68
68
repositories {
@@ -81,7 +81,7 @@ mvn install
81
81
82
82
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
83
83
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 )
85
85
86
86
## Dependencies
87
87
Original file line number Diff line number Diff line change 9
9
<groupId >com.sendgrid</groupId >
10
10
<artifactId >sendgrid-java</artifactId >
11
11
<name >Twilio SendGrid Java helper library</name >
12
- <version >4.10.1 </version >
12
+ <version >4.10.2 </version >
13
13
<description >This Java module allows you to quickly and easily send emails through Twilio SendGrid using Java.</description >
14
14
<url >https://github.com/sendgrid/sendgrid-java</url >
15
15
<licenses >
26
26
<url >https://github.com/sendgrid/sendgrid-java</url >
27
27
<
connection >scm:git:
[email protected] :sendgrid/sendgrid-java.git</
connection >
28
28
<
developerConnection >scm:git:
[email protected] :sendgrid/sendgrid-java.git</
developerConnection >
29
- <tag >4.10.1 </tag >
29
+ <tag >4.10.2 </tag >
30
30
</scm >
31
31
<profiles >
32
32
<profile >
306
306
</plugin >
307
307
</plugins >
308
308
</reporting >
309
- </project >
309
+ </project >
Original file line number Diff line number Diff line change 11
11
*/
12
12
public abstract class BaseInterface implements SendGridAPI {
13
13
14
- private static final String VERSION = "4.10.1 " ;
14
+ private static final String VERSION = "4.10.2 " ;
15
15
16
16
private static final String USER_AGENT = "sendgrid/" + VERSION + ";java" ;
17
17
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 {
43
43
@ Test
44
44
public void testLibraryVersion () {
45
45
SendGrid sg = new SendGrid (SENDGRID_API_KEY );
46
- Assert .assertEquals (sg .getLibraryVersion (), "4.10.1 " );
46
+ Assert .assertEquals (sg .getLibraryVersion (), "4.10.2 " );
47
47
}
48
48
49
49
@ Test
You can’t perform that action at this time.
0 commit comments