From b0c39436fa839d6f756133d39aafe0ccf1348e19 Mon Sep 17 00:00:00 2001 From: ashvini-sib Date: Mon, 27 Dec 2021 17:06:26 +0530 Subject: [PATCH 1/2] maven surfire plugin version upgrade and removal of log4j for logging --- pom.xml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pom.xml b/pom.xml index 6ebe553..99ee2ff 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ sib-api-v3-sdk jar sib-api-v3-sdk - 5.2.0 + 5.3.0 https://github.com/sendinblue/APIv3-java-library SendinBlue's API v3 Java Library @@ -75,16 +75,11 @@ org.apache.maven.plugins maven-surefire-plugin - 2.12 + 3.0.0-M5 - - - loggerPath - conf/log4j.properties - - -Xms512m -Xmx1500m methods + 30 pertest From 4ddfe595ad48164ccff8854ca7adf5a59467f2de Mon Sep 17 00:00:00 2001 From: ashvini-sib Date: Mon, 27 Dec 2021 19:11:41 +0530 Subject: [PATCH 2/2] version upgrade --- README.md | 6 +++--- build.gradle | 2 +- build.sbt | 2 +- src/main/java/sendinblue/ApiClient.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 3152d41..0bc9890 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Add this dependency to your project's POM: com.sendinblue sib-api-v3-sdk - 5.2.0 + 5.3.0 compile ``` @@ -32,7 +32,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -compile "com.sendinblue:sib-api-v3-sdk:5.2.0" +compile "com.sendinblue:sib-api-v3-sdk:5.3.0" ``` ### Others @@ -45,7 +45,7 @@ mvn package Then manually install the following JARs: -* `target/sib-api-v3-sdk-5.2.0.jar` +* `target/sib-api-v3-sdk-5.3.0.jar` * `target/lib/*.jar` ## Getting Started diff --git a/build.gradle b/build.gradle index 9ca7eb4..93dbca8 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'idea' apply plugin: 'eclipse' group = 'com.sendinblue' -version = '5.2.0' +version = '5.3.0' buildscript { repositories { diff --git a/build.sbt b/build.sbt index 6be8c07..815b620 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "com.sendinblue", name := "sib-api-v3-sdk", - version := "5.2.0", + version := "5.3.0", scalaVersion := "2.11.4", scalacOptions ++= Seq("-feature"), javacOptions in compile ++= Seq("-Xlint:deprecation"), diff --git a/src/main/java/sendinblue/ApiClient.java b/src/main/java/sendinblue/ApiClient.java index b905e22..32ae9c2 100644 --- a/src/main/java/sendinblue/ApiClient.java +++ b/src/main/java/sendinblue/ApiClient.java @@ -55,7 +55,7 @@ public class ApiClient { private boolean debugging = false; private Map defaultHeaderMap = new HashMap(); private String tempFolderPath = null; - private String defaultUserAgent = "sendinblue_clientAPI/v5.2.0/java"; + private String defaultUserAgent = "sendinblue_clientAPI/v5.3.0/java"; private Map authentications;