Skip to content

Commit 23fd700

Browse files
committed
Travis update: Jul 2025 (Build 926)
[skip ci]
1 parent bbff4c3 commit 23fd700

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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.0
4+
- Python package version: 2.5.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

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.0"
18+
__version__ = "2.5.1"
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.0/python'
94+
self.user_agent = 'OpenAPI-Generator/2.5.1/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.0".\
562+
"SDK Package Version: 2.5.1".\
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.0"
3+
version = "2.5.1"
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.0"
25+
VERSION = "2.5.1"
2626
PYTHON_REQUIRES = ">= 3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",

0 commit comments

Comments
 (0)