Skip to content

Commit ad3763e

Browse files
authored
Merge pull request #23 from messente/travis
2.4.0 fixes
2 parents 3d81536 + a774df0 commit ad3763e

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
language: python
2-
python:
3-
- "3.9"
42

53
script:
64
- echo "skipping tests"

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.3.0
4+
- Python package version: 2.4.0
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.3.0"
18+
__version__ = "2.4.0"
1919

2020
# import apis into sdk package
2121
from messente_api.api.blacklist_api import BlacklistApi

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.3.0/python'
94+
self.user_agent = 'OpenAPI-Generator/2.4.0/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
@@ -520,7 +520,7 @@ def to_debug_report(self) -> str:
520520
"OS: {env}\n"\
521521
"Python Version: {pyversion}\n"\
522522
"Version of the API: 2.0.0\n"\
523-
"SDK Package Version: 2.3.0".\
523+
"SDK Package Version: 2.4.0".\
524524
format(env=sys.platform, pyversion=sys.version)
525525

526526
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.3.0"
3+
version = "2.4.0"
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.3.0"
25+
VERSION = "2.4.0"
2626
PYTHON_REQUIRES = ">= 3.8"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 3.0.0",

0 commit comments

Comments
 (0)