Skip to content

Commit 46b7489

Browse files
Merge pull request #19 from messente/travis
Release version 4.2.1
2 parents de7e0db + 7d4d955 commit 46b7489

6 files changed

Lines changed: 12 additions & 13 deletions

File tree

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Messente API Library
22

33
- Messente API version: 2.0.0
4-
- Java artifact version: 4.2.0
4+
- Java artifact version: 4.2.1
55

66
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber, WhatsApp and Telegram messages. * Manage contacts and groups. * Fetch detailed info about phone numbers. * Blacklist phone numbers to make sure you're not sending any unwanted messages. Messente builds [tools](https://messente.com/documentation) to help organizations connect their services to people anywhere in the world.
77

@@ -12,7 +12,9 @@ Install Messente API library via Maven, Gradle, Ivy or manual build.
1212
### Gradle
1313

1414
```groovy
15-
compile "com.messente.api:messente-api:4.2.0"
15+
dependencies {
16+
implementation 'com.messente.api:messente-api:4.2.1'
17+
}
1618
```
1719

1820
### Maven
@@ -21,17 +23,14 @@ compile "com.messente.api:messente-api:4.2.0"
2123
<dependency>
2224
<groupId>com.messente.api</groupId>
2325
<artifactId>messente-api</artifactId>
24-
<version>4.2.0</version>
25-
<type>pom</type>
26+
<version>4.2.1</version>
2627
</dependency>
2728
```
2829

2930
### Ivy
3031

3132
```xml
32-
<dependency org='com.messente.api' name='messente-api' rev='4.2.0'>
33-
<artifact name='messente-api' ext='pom' ></artifact>
34-
</dependency>
33+
<dependency org='com.messente.api' name='messente-api' rev='4.2.1'/>
3534
```
3635

3736
### Manual Build
@@ -44,7 +43,7 @@ mvn clean package
4443

4544
Install
4645

47-
- `target/messente-api-4.2.0.jar`
46+
- `target/messente-api-4.2.1.jar`
4847
- `target/lib/*.jar`
4948

5049
## Features

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ apply plugin: 'java'
2222
apply plugin: 'com.diffplug.spotless'
2323

2424
group = 'com.messente.api'
25-
version = '4.2.0'
25+
version = '4.2.1'
2626

2727
ext {
2828
jakarta_annotation_version = "1.3.5"

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.messente.api",
44
name := "messente-api",
5-
version := "4.2.0",
5+
version := "4.2.1",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>messente-api</artifactId>
66
<packaging>jar</packaging>
77
<name>messente-api</name>
8-
<version>4.2.0</version>
8+
<version>4.2.1</version>
99
<url>https://github.com/messente/messente-api-java</url>
1010
<description>Java library for Messente API</description>
1111
<scm>

src/main/java/com/messente/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private void init() {
141141
json = new JSON();
142142

143143
// Set default User-Agent.
144-
setUserAgent("OpenAPI-Generator/4.2.0/java");
144+
setUserAgent("OpenAPI-Generator/4.2.1/java");
145145

146146
authentications = new HashMap<String, Authentication>();
147147
}

src/main/java/com/messente/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.6.0")
1717
public class Configuration {
18-
public static final String VERSION = "4.2.0";
18+
public static final String VERSION = "4.2.1";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

0 commit comments

Comments
 (0)