Skip to content

Commit b9ab685

Browse files
author
xendit-devx-bot
committed
Generated Xendit python SDK
1 parent 988b18b commit b9ab685

6 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
The official Xendit Python SDK provides a simple and convenient way to call Xendit's REST API
66
in applications written in Python.
77

8-
* Package version: 3.7.0
8+
* Package version: 4.0.0
99

1010
## Requirements
1111

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "xendit-python"
3-
version = "3.7.0"
3+
version = "4.0.0"
44
description = "Xendit REST API Client for Python - Invoice, Payment Request, Payment Method, Refund, Balance, Transaction, Customer, and Payout Services https://xendit.github.io/apireference/"
55
authors = ["DevX Team <[email protected]>"]
66
license = "MIT"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools import setup, find_packages # noqa: H301
77

88
NAME = "xendit"
9-
VERSION = "3.7.0"
9+
VERSION = "4.0.0"
1010
# To install the library, run the following
1111
#
1212
# python setup.py install

xendit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"""
66

77

8-
__version__ = "3.7.0"
8+
__version__ = "4.0.0"
99

1010
# import ApiClient
1111
from xendit.api_client import ApiClient

xendit/api_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7474

7575
# XENDIT headers
7676
self.default_headers['xendit-lib'] = 'python'
77-
self.default_headers['xendit-lib-ver'] = '3.7.0'
77+
self.default_headers['xendit-lib-ver'] = '4.0.0'
7878

7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/3.7.0/python'
81+
self.user_agent = 'OpenAPI-Generator/4.0.0/python'
8282

8383
def __enter__(self):
8484
return self

xendit/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def to_debug_report(self):
365365
"OS: {env}\n"\
366366
"Python Version: {pyversion}\n"\
367367
"Version of the API: 1.45.2\n"\
368-
"SDK Package Version: 3.7.0".\
368+
"SDK Package Version: 4.0.0".\
369369
format(env=sys.platform, pyversion=sys.version)
370370

371371
def get_host_settings(self):

0 commit comments

Comments
 (0)