Update package version

This commit is contained in:
Quentin 2022-11-12 22:39:53 +01:00
parent b32d36751c
commit 675c677ab5
Signed by: quentin
GPG Key ID: E9602264D639FF68
7 changed files with 6 additions and 21 deletions

View File

@ -13,7 +13,7 @@ task buildPythonClient(type: org.openapitools.generator.gradle.plugin.tasks.Gene
outputDir = "$rootDir/python"
configOptions = [
packageName: "garage_admin_sdk",
packageVersion: "0.7.3",
packageVersion: "0.8.0",
projectName: "garage-admin-sdk"
]
}

View File

@ -86,19 +86,4 @@ setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_allow_bucket_key_request.py
test/test_allow_bucket_key_request_permissions.py
test/test_bucket_api.py
test/test_bucket_info.py
test/test_bucket_info_quotas.py
test/test_bucket_info_website_config.py
test/test_bucket_key_info.py
test/test_create_bucket_request.py
test/test_create_bucket_request_local_alias.py
test/test_create_bucket_request_local_alias_allow.py
test/test_list_buckets200_response_inner.py
test/test_list_buckets200_response_inner_local_aliases_inner.py
test/test_update_bucket_request.py
test/test_update_bucket_request_quotas.py
test/test_update_bucket_request_website_access.py
tox.ini

View File

@ -7,7 +7,7 @@ Administrate your Garage cluster programatically, including status, layout, keys
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: v0.8.0
- Package version: 0.7.3
- Package version: 0.8.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
## Requirements.

View File

@ -10,7 +10,7 @@
"""
__version__ = "0.7.3"
__version__ = "0.8.0"
# import ApiClient
from garage_admin_sdk.api_client import ApiClient

View File

@ -76,7 +76,7 @@ class ApiClient(object):
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/0.7.3/python'
self.user_agent = 'OpenAPI-Generator/0.8.0/python'
def __enter__(self):
return self

View File

@ -388,7 +388,7 @@ class Configuration(object):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v0.8.0\n"\
"SDK Package Version: 0.7.3".\
"SDK Package Version: 0.8.0".\
format(env=sys.platform, pyversion=sys.version)
def get_host_settings(self):

View File

@ -11,7 +11,7 @@
from setuptools import setup, find_packages # noqa: H301
NAME = "garage-admin-sdk"
VERSION = "0.7.3"
VERSION = "0.8.0"
# To install the library, run the following
#
# python setup.py install