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 @@ -98,7 +98,7 @@ touch Example.java
9898Add the example you want to test to Example.java, including the headers at the top of the file.
9999
100100``` bash
101- javac -classpath ../repo/com/sendgrid/4.7.2 /sendgrid-4.7.2 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.7.2 /sendgrid-4.7.2 -jar.jar:. Example
101+ javac -classpath ../repo/com/sendgrid/4.7.3 /sendgrid-4.7.3 -jar.jar:. Example.java && java -classpath ../repo/com/sendgrid/4.7.3 /sendgrid-4.7.3 -jar.jar:. Example
102102```
103103
104104<a name =" understanding-the-codebase " ></a >
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Add the following to your build.gradle file in the root of your project.
6868...
6969dependencies {
7070 ...
71- implementation 'com.sendgrid:sendgrid-java:4.7.2 '
71+ implementation 'com.sendgrid:sendgrid-java:4.7.3 '
7272}
7373
7474repositories {
@@ -87,7 +87,7 @@ mvn install
8787
8888You can just drop the jar file in. It's a fat jar - it has all the dependencies built in.
8989
90- [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/4.7.2 /sendgrid-java.jar )
90+ [ sendgrid-java.jar] ( https://github.com/sendgrid/sendgrid-java/releases/download/4.7.3 /sendgrid-java.jar )
9191
9292## Dependencies
9393
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.7.2 </version >
12+ <version >4.7.3 </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:git@github.com:sendgrid/sendgrid-java.git</connection >
2828 <developerConnection >scm:git:git@github.com:sendgrid/sendgrid-java.git</developerConnection >
29- <tag >4.7.2 </tag >
29+ <tag >4.7.3 </tag >
3030 </scm >
3131 <profiles >
3232 <profile >
318318 <dependency >
319319 <groupId >org.bouncycastle</groupId >
320320 <artifactId >bcprov-jdk15on</artifactId >
321- <version >1.68 </version >
321+ <version >1.69 </version >
322322 </dependency >
323323 </dependencies >
324324 <reporting >
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.7.2 " ;
14+ private static final String VERSION = "4.7.3 " ;
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.7.2 " );
46+ Assert .assertEquals (sg .getLibraryVersion (), "4.7.3 " );
4747 }
4848
4949 @ Test
You can’t perform that action at this time.
0 commit comments