Skip to content

Commit

Permalink
Merge pull request #19 from sendinblue/feature_javawrapper_update
Browse files Browse the repository at this point in the history
Version change
  • Loading branch information
swrnm authored Jul 24, 2020
2 parents 5776b69 + 246add9 commit 3f9b6e0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.sendinblue</groupId>
<artifactId>sib-api-v3-sdk</artifactId>
<version>4.1.0</version>
<version>4.1.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -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:4.1.0"
compile "com.sendinblue:sib-api-v3-sdk:4.1.1"
```

### Others
Expand All @@ -45,7 +45,7 @@ At first generate the JAR by executing:

Then manually install the following JARs:

* target/sib-api-v3-sdk-4.1.0.jar
* target/sib-api-v3-sdk-4.1.1.jar
* target/lib/*.jar

## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'

group = 'com.sendinblue'
version = '4.1.0'
version = '4.1.1'

buildscript {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.sendinblue",
name := "sib-api-v3-sdk",
version := "4.1.0",
version := "4.1.1",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>sib-api-v3-sdk</artifactId>
<packaging>jar</packaging>
<name>sib-api-v3-sdk</name>
<version>4.1.0</version>
<version>4.1.1</version>
<url>https://github.com/sendinblue/APIv3-java-library</url>
<description>SendinBlue&#39;s API v3 Java Library</description>
<scm>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sendinblue/ApiClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public ApiClient() {
json = new Json();

// Set default User-Agent.
setUserAgent("Swagger-Codegen/4.1.0/java");
setUserAgent("Swagger-Codegen/4.1.1/java");

// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap<String, Authentication>();
Expand Down

0 comments on commit 3f9b6e0

Please sign in to comment.