From d1d98350ed4510794b74bcd5e2c323d81538f219 Mon Sep 17 00:00:00 2001 From: Tomasz Prus Date: Fri, 18 Mar 2022 00:57:13 +0100 Subject: [PATCH] chore: update release numbers --- kubernetes_asyncio/README.md | 2 +- kubernetes_asyncio/__init__.py | 2 +- kubernetes_asyncio/client/__init__.py | 2 +- kubernetes_asyncio/client/api_client.py | 2 +- kubernetes_asyncio/client/configuration.py | 2 +- scripts/constants.py | 4 ++-- setup.py | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/kubernetes_asyncio/README.md b/kubernetes_asyncio/README.md index 96ff9e37f..cab5d795e 100644 --- a/kubernetes_asyncio/README.md +++ b/kubernetes_asyncio/README.md @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: v1.22.6 -- Package version: 22.6.0-snapshot +- Package version: 22.6.0 - Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen ## Requirements. diff --git a/kubernetes_asyncio/__init__.py b/kubernetes_asyncio/__init__.py index e54059c0a..011c47225 100644 --- a/kubernetes_asyncio/__init__.py +++ b/kubernetes_asyncio/__init__.py @@ -14,7 +14,7 @@ __project__ = 'kubernetes_asyncio' # The version is auto-updated. Please do not edit. -__version__ = "22.6.0-snapshot" +__version__ = "22.6.0" import kubernetes_asyncio.client import kubernetes_asyncio.config diff --git a/kubernetes_asyncio/client/__init__.py b/kubernetes_asyncio/client/__init__.py index 41146007c..312ec86e3 100644 --- a/kubernetes_asyncio/client/__init__.py +++ b/kubernetes_asyncio/client/__init__.py @@ -14,7 +14,7 @@ from __future__ import absolute_import -__version__ = "22.6.0-snapshot" +__version__ = "22.6.0" # import apis into sdk package from kubernetes_asyncio.client.api.well_known_api import WellKnownApi diff --git a/kubernetes_asyncio/client/api_client.py b/kubernetes_asyncio/client/api_client.py index efe992fc3..8ac2eca6f 100644 --- a/kubernetes_asyncio/client/api_client.py +++ b/kubernetes_asyncio/client/api_client.py @@ -78,7 +78,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/22.6.0-snapshot/python' + self.user_agent = 'OpenAPI-Generator/22.6.0/python' self.client_side_validation = configuration.client_side_validation async def __aenter__(self): diff --git a/kubernetes_asyncio/client/configuration.py b/kubernetes_asyncio/client/configuration.py index efac021cc..aaa640fbe 100644 --- a/kubernetes_asyncio/client/configuration.py +++ b/kubernetes_asyncio/client/configuration.py @@ -406,7 +406,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: v1.22.6\n"\ - "SDK Package Version: 22.6.0-snapshot".\ + "SDK Package Version: 22.6.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/scripts/constants.py b/scripts/constants.py index 719c7a06a..0b6049541 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -18,13 +18,13 @@ KUBERNETES_BRANCH = "v1.22.6" # client version for packaging and releasing. -CLIENT_VERSION = "22.6.0-snapshot" +CLIENT_VERSION = "22.6.0" # Name of the release package PACKAGE_NAME = "kubernetes_asyncio" # Stage of development, mainly used in setup.py's classifiers. -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "5 - Production/Stable" # If called directly, return the constant value given diff --git a/setup.py b/setup.py index a7185011d..a3c4b5500 100644 --- a/setup.py +++ b/setup.py @@ -16,9 +16,9 @@ # Do not edit these constants. They will be updated automatically # by scripts/update-client.sh. -CLIENT_VERSION = "22.6.0-snapshot" +CLIENT_VERSION = "22.6.0" PACKAGE_NAME = "kubernetes_asyncio" -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "5 - Production/Stable" # To install the library, run the following #