Skip to content

Commit 8059531

Browse files
committed
Bump package version to 1.0.6 and update related files
1 parent 6dd19dd commit 8059531

File tree

8 files changed

+7
-15
lines changed

8 files changed

+7
-15
lines changed

.openapi-generator/FILES

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.github/workflows/python.yml
22
.gitignore
33
.gitlab-ci.yml
4-
.openapi-generator-ignore
54
.travis.yml
65
README.md
76
docs/AddClientResponse.md
@@ -18,13 +17,6 @@ setup.cfg
1817
setup.py
1918
test-requirements.txt
2019
test/__init__.py
21-
test/test_add_client_response.py
22-
test/test_add_order_response.py
23-
test/test_default_api.py
24-
test/test_update_client_response.py
25-
test/test_whmcs_base_response.py
26-
test/test_whmcs_error_response.py
27-
test/test_whmcs_success_response.py
2820
tox.ini
2921
whmcs_client/__init__.py
3022
whmcs_client/api/__init__.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ each action as an independent path while routing all requests to the /api.php en
99
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1010

1111
- API version: 1.0.0
12-
- Package version: 1.0.5
12+
- Package version: 1.0.6
1313
- Generator version: 7.13.0
1414
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1515

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"packageName": "whmcs_client",
33
"projectName": "whmcs-api-client",
4-
"packageVersion": "1.0.5",
4+
"packageVersion": "1.0.6",
55
"packageUrl": "https://github.com/truehostcloud/whmcs-python-client",
66
"packageCompany": "Truehost",
77
"packageAuthor": "William Mwai",

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 = "whmcs_client"
3-
version = "1.0.5"
3+
version = "1.0.6"
44
description = "WHMCS API"
55
authors = ["OpenAPI Generator Community <team@openapitools.org>"]
66
license = "NoLicense"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# prerequisite: setuptools
2222
# http://pypi.python.org/pypi/setuptools
2323
NAME = "whmcs-api-client"
24-
VERSION = "1.0.5"
24+
VERSION = "1.0.6"
2525
PYTHON_REQUIRES = ">= 3.9"
2626
REQUIRES = [
2727
"urllib3 >= 2.1.0, < 3.0.0",

whmcs_client/__init__.py

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

1616

17-
__version__ = "1.0.5"
17+
__version__ = "1.0.6"
1818

1919
# import apis into sdk package
2020
from whmcs_client.api.default_api import DefaultApi

whmcs_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/1.0.5/python'
93+
self.user_agent = 'OpenAPI-Generator/1.0.6/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

whmcs_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ def to_debug_report(self) -> str:
501501
"OS: {env}\n"\
502502
"Python Version: {pyversion}\n"\
503503
"Version of the API: 1.0.0\n"\
504-
"SDK Package Version: 1.0.5".\
504+
"SDK Package Version: 1.0.6".\
505505
format(env=sys.platform, pyversion=sys.version)
506506

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

0 commit comments

Comments
 (0)