From 3ba5608a3cd747d841d34459d2dd4cd4b476d06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Ag=C3=BCera?= Date: Thu, 10 Apr 2025 18:32:12 -0300 Subject: [PATCH] Updated package version to 7.0.0 in README.md, VERSION, __init__.py, api_client.py, configuration.py, config-python.json, pyproject.toml, and setup.py. --- README.md | 2 +- VERSION | 2 +- conekta/__init__.py | 2 +- conekta/api_client.py | 4 ++-- conekta/configuration.py | 2 +- config-python.json | 4 ++-- pyproject.toml | 2 +- setup.py | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 4733e95..9ce5184 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Conekta sdk This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 2.2.0 -- Package version: 6.0.4 +- Package version: 7.0.0 - Generator version: 7.9.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://github.com/conekta/openapi/issues](https://github.com/conekta/openapi/issues) diff --git a/VERSION b/VERSION index 1aa5e41..66ce77b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.0.4 +7.0.0 diff --git a/conekta/__init__.py b/conekta/__init__.py index 7174d7b..4525d21 100644 --- a/conekta/__init__.py +++ b/conekta/__init__.py @@ -15,7 +15,7 @@ """ # noqa: E501 -__version__ = "6.0.4" +__version__ = "7.0.0" # import apis into sdk package from conekta.api.antifraud_api import AntifraudApi diff --git a/conekta/api_client.py b/conekta/api_client.py index fdcac75..96cfa57 100644 --- a/conekta/api_client.py +++ b/conekta/api_client.py @@ -74,7 +74,7 @@ class ApiClient: 'lang': 'python', 'lang_version': platform.python_version(), 'publisher': 'conekta', - 'bindings_version': '6.0.4', + 'bindings_version': '7.0.0', 'uname': platform.uname() } _pool = None @@ -97,7 +97,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Conekta/v2 PythonBindings/6.0.4' + self.user_agent = 'Conekta/v2 PythonBindings/7.0.0' self.conekta_user_agent = json.dumps(self.data) self.client_side_validation = configuration.client_side_validation diff --git a/conekta/configuration.py b/conekta/configuration.py index 72fdcd5..16892f0 100644 --- a/conekta/configuration.py +++ b/conekta/configuration.py @@ -393,7 +393,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 2.2.0\n"\ - "SDK Package Version: 6.0.4".\ + "SDK Package Version: 7.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/config-python.json b/config-python.json index 6257ad6..249861a 100644 --- a/config-python.json +++ b/config-python.json @@ -7,14 +7,14 @@ "licenseName": "MIT License", "licenseUrl": "https://www.opensource.org/licenses/mit-license.php", "generateSourceCodeOnly": "false", - "packageVersion": "6.0.4", + "packageVersion": "7.0.0", "packageUrl": "https://github.com/conekta/conekta-python", "projectName": "conekta", "templateDir": "/local/templates/python", "hasBearerMethods" : true, "useOneOfDiscriminatorLookup" : true, "nonCompliantUseDiscriminatorIfCompositionFails" : false, - "httpUserAgent": "Conekta/v2 PythonBindings/6.0.4", + "httpUserAgent": "Conekta/v2 PythonBindings/7.0.0", "files": { "/local/AUTHORS.md" : {}, "/local/CODE_OF_CONDUCT.md": {}, diff --git a/pyproject.toml b/pyproject.toml index 37e6356..52d5d42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "conekta" -version = "6.0.4" +version = "7.0.0" description = "Conekta API" authors = ["Engineering Conekta "] license = "MIT-LICENSE" diff --git a/setup.py b/setup.py index 2122fc9..66f8173 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "conekta" -VERSION = "6.0.4" +VERSION = "7.0.0" PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ "urllib3 >= 1.25.3, < 3.0.0",