Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Sczlog committed Mar 22, 2023
1 parent 028ccf6 commit 34e4dd5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion cloudtower/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# flake8: noqa
from __future__ import absolute_import

__version__ = "2.6.0"
__version__ = "2.7.0"

# import apis into sdk package
from cloudtower.api.alert_api import AlertApi
Expand Down
4 changes: 2 additions & 2 deletions cloudtower/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cloudtower operation API and SDK # noqa: E501
The version of the OpenAPI document: 2.6.0
The version of the OpenAPI document: 2.7.0
Contact: info@smartx.com
Generated by: https://openapi-generator.tech
"""
Expand Down Expand Up @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/2.6.0/python'
self.user_agent = 'OpenAPI-Generator/2.7.0/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
4 changes: 2 additions & 2 deletions cloudtower/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,8 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 2.6.0\n"\
"SDK Package Version: 2.6.0".\
"Version of the API: 2.7.0\n"\
"SDK Package Version: 2.7.0".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# coding: utf-8

"""
CloudTower APIs
cloudtower operation API and SDK # noqa: E501
The version of the OpenAPI document: 2.6.0
Contact: info@smartx.com
Generated by: https://openapi-generator.tech
"""
"""
CloudTower APIs
cloudtower operation API and SDK # noqa: E501
The version of the OpenAPI document: 2.7.0
Contact: info@smartx.com
Generated by: https://openapi-generator.tech
"""


import pathlib
from setuptools import setup, find_packages # noqa: H301

NAME = "cloudtower-sdk"
VERSION = "2.6.0"
VERSION = "2.7.0"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 34e4dd5

Please sign in to comment.