Skip to content

Commit d329a5a

Browse files
committed
Travis update: Jul 2025 (Build 944)
[skip ci]
1 parent 8e704ec commit d329a5a

9 files changed

Lines changed: 16 additions & 25 deletions

File tree

.openapi-generator-ignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
# OpenAPI Generator Ignore
28
# Generated by openapi-generator https://github.com/openapitools/openapi-generator
39

@@ -21,3 +27,7 @@
2127
#docs/*.md
2228
# Then explicitly reverse the ignore rule for a single file:
2329
#!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: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
.github/workflows/python.yml
22
.gitignore
33
.gitlab-ci.yml
4-
.openapi-generator-ignore
5-
.travis.yml
64
README.md
75
docs/AccountBalanceApi.md
86
docs/BlacklistApi.md

.travis.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
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-
- Python package version: 2.5.1
4+
- Python package version: 2.5.2
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

messente_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "2.5.1"
18+
__version__ = "2.5.2"
1919

2020
# import apis into sdk package
2121
from messente_api.api.account_balance_api import AccountBalanceApi

messente_api/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'OpenAPI-Generator/2.5.1/python'
94+
self.user_agent = 'OpenAPI-Generator/2.5.2/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

messente_api/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def to_debug_report(self) -> str:
559559
"OS: {env}\n"\
560560
"Python Version: {pyversion}\n"\
561561
"Version of the API: 2.0.0\n"\
562-
"SDK Package Version: 2.5.1".\
562+
"SDK Package Version: 2.5.2".\
563563
format(env=sys.platform, pyversion=sys.version)
564564

565565
def get_host_settings(self) -> List[HostSetting]:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "messente_api"
3-
version = "2.5.1"
3+
version = "2.5.2"
44
description = "Messente API"
55
authors = ["Messente <messente@messente.com>"]
66
license = "Apache-2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "messente-api"
25-
VERSION = "2.5.1"
25+
VERSION = "2.5.2"
2626
PYTHON_REQUIRES = ">= 3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",

0 commit comments

Comments
 (0)