Skip to content

Commit ac31326

Browse files
authored
Merge pull request #32 from messente/travis
release version 4.5.2
2 parents 5c50d8d + f8dcff6 commit ac31326

File tree

122 files changed

+150
-136
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+150
-136
lines changed

.openapi-generator-ignore

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
# IMPORTANT: this file is generated with the option `openapiGeneratorIgnoreList` enabled
2-
# (--openapi-generator-ignore-list in CLI for example) so the entries below are pre-populated based
3-
# on the input provided by the users and this file will be overwritten every time when the option is
4-
# enabled (which is the exact opposite of the default behaviour to not overwrite
5-
# .openapi-generator-ignore if the file exists).
6-
71
# OpenAPI Generator Ignore
82
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
93

@@ -27,7 +21,3 @@
2721
#docs/*.md
2822
# Then explicitly reverse the ignore rule for a single file:
2923
#!docs/README.md
30-
31-
# The following entries are pre-populated based on the input obtained via
32-
# the option `openapiGeneratorIgnoreList` (--openapi-generator-ignore-list in CLI for example).
33-
.travis.yml

.openapi-generator/FILES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.github/workflows/maven.yml
22
.gitignore
3+
.openapi-generator-ignore
4+
.travis.yml
35
README.md
46
api/openapi.yaml
57
build.gradle

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#
2+
# Generated by OpenAPI Generator: https://openapi-generator.tech
3+
#
4+
# Ref: https://docs.travis-ci.com/user/languages/java/
5+
#
6+
language: java
7+
jdk:
8+
- openjdk12
9+
- openjdk11
10+
- openjdk10
11+
- openjdk9
12+
- openjdk8
13+
before_install:
14+
# ensure gradlew has proper permission
15+
- chmod a+x ./gradlew
16+
script:
17+
# test using maven
18+
#- mvn test
19+
# test using gradle
20+
- gradle test
21+
# test using sbt
22+
# - sbt test

README.md

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

33
- Messente API version: 2.0.0
4-
- Java artifact version: 4.5.1
4+
- Java artifact version: 4.5.2
55

6-
[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.
6+
[Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp 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

88
## Installation
99

@@ -13,7 +13,7 @@ Install Messente API library via Maven, Gradle, Ivy or manual build.
1313

1414
```groovy
1515
dependencies {
16-
implementation 'com.messente.api:messente-api:4.5.1'
16+
implementation 'com.messente.api:messente-api:4.5.2'
1717
}
1818
```
1919

@@ -23,14 +23,14 @@ dependencies {
2323
<dependency>
2424
<groupId>com.messente.api</groupId>
2525
<artifactId>messente-api</artifactId>
26-
<version>4.5.1</version>
26+
<version>4.5.2</version>
2727
</dependency>
2828
```
2929

3030
### Ivy
3131

3232
```xml
33-
<dependency org='com.messente.api' name='messente-api' rev='4.5.1'/>
33+
<dependency org='com.messente.api' name='messente-api' rev='4.5.2'/>
3434
```
3535

3636
### Manual Build
@@ -43,7 +43,7 @@ mvn clean package
4343

4444
Install
4545

46-
- `target/messente-api-4.5.1.jar`
46+
- `target/messente-api-4.5.2.jar`
4747
- `target/lib/*.jar`
4848

4949
## Features

api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ info:
77
description: |-
88
[Messente](https://messente.com) is a global provider of messaging and user verification services.
99
10-
* Send and receive SMS, Viber, WhatsApp and Telegram messages.
10+
* Send and receive SMS, Viber and WhatsApp messages.
1111
* Manage contacts and groups.
1212
* Fetch detailed info about phone numbers.
1313
* Blacklist phone numbers to make sure you're not sending any unwanted messages.

build.gradle

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

2222
group = 'com.messente.api'
23-
version = '4.5.1'
23+
version = '4.5.2'
2424

2525
ext {
2626
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.5.1",
5+
version := "4.5.2",
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.5.1</version>
8+
<version>4.5.2</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/ApiCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Messente API
3-
* [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.
3+
* [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp 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.
44
*
55
* The version of the OpenAPI document: 2.0.0
66
* Contact: [email protected]

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* Messente API
3-
* [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.
3+
* [Messente](https://messente.com) is a global provider of messaging and user verification services. * Send and receive SMS, Viber and WhatsApp 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.
44
*
55
* The version of the OpenAPI document: 2.0.0
66
* Contact: [email protected]
@@ -145,7 +145,7 @@ private void init() {
145145
json = new JSON();
146146

147147
// Set default User-Agent.
148-
setUserAgent("OpenAPI-Generator/4.5.1/java");
148+
setUserAgent("OpenAPI-Generator/4.5.2/java");
149149

150150
authentications = new HashMap<String, Authentication>();
151151
}

0 commit comments

Comments
 (0)