File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ touch Example.java
98
98
Add the example you want to test to Example.java, including the headers at the top of the file.
99
99
100
100
``` bash
101
- javac -classpath ../repo/com/sendgrid/4.8.3 /sendgrid-4.8.3 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.8.3 /sendgrid-4.8.3 -jar.jar:. Example
101
+ javac -classpath ../repo/com/sendgrid/4.9.0 /sendgrid-4.9.0 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.9.0 /sendgrid-4.9.0 -jar.jar:. Example
102
102
```
103
103
104
104
<a name =" understanding-the-codebase " ></a >
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Add the following to your build.gradle file in the root of your project.
67
67
...
68
68
dependencies {
69
69
...
70
- implementation 'com.sendgrid:sendgrid-java:4.8.3 '
70
+ implementation 'com.sendgrid:sendgrid-java:4.9.0 '
71
71
}
72
72
73
73
repositories {
@@ -86,7 +86,7 @@ mvn install
86
86
87
87
You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
88
88
89
- [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/4.8.3 /sendgrid-java.jar )
89
+ [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/4.9.0 /sendgrid-java.jar )
90
90
91
91
## Dependencies
92
92
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.8.3 </version >
12
+ <version >4.9.0 </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.8.3 </tag >
29
+ <tag >4.9.0 </tag >
30
30
</scm >
31
31
<profiles >
32
32
<profile >
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.8.3 " ;
14
+ private static final String VERSION = "4.9.0 " ;
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.8.3 " );
46
+ Assert .assertEquals (sg .getLibraryVersion (), "4.9.0 " );
47
47
}
48
48
49
49
@ Test
You can’t perform that action at this time.
0 commit comments