diff --git a/CHANGELOG.md b/CHANGELOG.md index 7adf358270..481c79d959 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v36.0.0 + +Kubernetes API Version: v1.36.1 + # v36.0.0b1 Kubernetes API Version: v1.36.1 diff --git a/README.md b/README.md index ec64a534af..49446851d4 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ supported versions of Kubernetes clusters. - [client 33.y.z](https://pypi.org/project/kubernetes/33.1.0/): Kubernetes 1.32 or below (+-), Kubernetes 1.33 (✓), Kubernetes 1.34 or above (+-) - [client 34.y.z](https://pypi.org/project/kubernetes/34.1.0/): Kubernetes 1.33 or below (+-), Kubernetes 1.34 (✓), Kubernetes 1.35 or above (+-) - [client 35.y.z](https://pypi.org/project/kubernetes/35.0.0/): Kubernetes 1.34 or below (+-), Kubernetes 1.35 (✓), Kubernetes 1.36 or above (+-) -- [client 36.y.z](https://pypi.org/project/kubernetes/36.0.0b1/): Kubernetes 1.35 or below (+-), Kubernetes 1.36 (✓), Kubernetes 1.37 or above (+-) +- [client 36.y.z](https://pypi.org/project/kubernetes/36.0.0/): Kubernetes 1.35 or below (+-), Kubernetes 1.36 (✓), Kubernetes 1.37 or above (+-) > See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release. @@ -205,12 +205,13 @@ between client-python versions. | 32.0 Alpha/Beta | Kubernetes main repo, 1.32 branch | ✗ | | 32.1 | Kubernetes main repo, 1.32 branch | ✗ | | 33.1 Alpha/Beta | Kubernetes main repo, 1.33 branch | ✗ | -| 33.1 | Kubernetes main repo, 1.33 branch | ✓ | +| 33.1 | Kubernetes main repo, 1.33 branch | ✗ | | 34.1 Alpha/Beta | Kubernetes main repo, 1.34 branch | ✗ | | 34.1 | Kubernetes main repo, 1.34 branch | ✓ | | 35.0 Alpha/Beta | Kubernetes main repo, 1.35 branch | ✗ | | 35.0 | Kubernetes main repo, 1.35 branch | ✓ | -| 36.0 Alpha/Beta | Kubernetes main repo, 1.36 branch | ✓ | +| 36.0 Alpha/Beta | Kubernetes main repo, 1.36 branch | ✗ | +| 36.0 | Kubernetes main repo, 1.36 branch | ✓ | > See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release. diff --git a/kubernetes/README.md b/kubernetes/README.md index 5317d96b66..add1da4f4f 100644 --- a/kubernetes/README.md +++ b/kubernetes/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: release-1.36 -- Package version: 36.0.0b1 +- Package version: 36.0.0 - Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen ## Requirements. diff --git a/kubernetes/__init__.py b/kubernetes/__init__.py index 7908178308..8b46e6be87 100644 --- a/kubernetes/__init__.py +++ b/kubernetes/__init__.py @@ -14,7 +14,7 @@ __project__ = 'kubernetes' # The version is auto-updated. Please do not edit. -__version__ = "36.0.0b1" +__version__ = "36.0.0" from . import client from . import config diff --git a/kubernetes/client/__init__.py b/kubernetes/client/__init__.py index 6cdf10de9b..99ae0bb31c 100644 --- a/kubernetes/client/__init__.py +++ b/kubernetes/client/__init__.py @@ -14,7 +14,7 @@ from __future__ import absolute_import -__version__ = "36.0.0b1" +__version__ = "36.0.0" # import apis into sdk package from kubernetes.client.api.well_known_api import WellKnownApi diff --git a/kubernetes/client/api_client.py b/kubernetes/client/api_client.py index 6b5aeec671..c67c6e83b0 100644 --- a/kubernetes/client/api_client.py +++ b/kubernetes/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/36.0.0b1/python' + self.user_agent = 'OpenAPI-Generator/36.0.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/kubernetes/client/configuration.py b/kubernetes/client/configuration.py index cd56e38185..0d569ae32d 100644 --- a/kubernetes/client/configuration.py +++ b/kubernetes/client/configuration.py @@ -426,7 +426,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: release-1.36\n"\ - "SDK Package Version: 36.0.0b1".\ + "SDK Package Version: 36.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/kubernetes_asyncio/README.md b/kubernetes_asyncio/README.md index fe1018c3fa..0da8848bc9 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: release-1.36 -- Package version: 36.0.0b1 +- Package version: 36.0.0 - Build package: org.openapitools.codegen.languages.PythonLegacyClientCodegen ## Requirements. diff --git a/kubernetes_asyncio/__init__.py b/kubernetes_asyncio/__init__.py index 01c6343ae8..dca5017e6c 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__ = "36.0.0b1" +__version__ = "36.0.0" import kubernetes_asyncio.client as client diff --git a/kubernetes_asyncio/client/__init__.py b/kubernetes_asyncio/client/__init__.py index 7a7b9c3cf2..a67fffa554 100644 --- a/kubernetes_asyncio/client/__init__.py +++ b/kubernetes_asyncio/client/__init__.py @@ -14,7 +14,7 @@ from __future__ import absolute_import -__version__ = "36.0.0b1" +__version__ = "36.0.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 4dd1e029f3..43659b774e 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/36.0.0b1/python' + self.user_agent = 'OpenAPI-Generator/36.0.0/python' self.client_side_validation = configuration.client_side_validation async def __aenter__(self): diff --git a/kubernetes_asyncio/client/api_client.py.orig b/kubernetes_asyncio/client/api_client.py.orig index f10a12acbb..e6f108f928 100644 --- a/kubernetes_asyncio/client/api_client.py.orig +++ b/kubernetes_asyncio/client/api_client.py.orig @@ -78,7 +78,7 @@ class ApiClient(object): self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/36.0.0b1/python' + self.user_agent = 'OpenAPI-Generator/36.0.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 b3ca65d6c5..c9f766a885 100644 --- a/kubernetes_asyncio/client/configuration.py +++ b/kubernetes_asyncio/client/configuration.py @@ -435,7 +435,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: release-1.36\n"\ - "SDK Package Version: 36.0.0b1".\ + "SDK Package Version: 36.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/kubernetes_asyncio/client/configuration.py.orig b/kubernetes_asyncio/client/configuration.py.orig index 3db6849435..f59d519647 100644 --- a/kubernetes_asyncio/client/configuration.py.orig +++ b/kubernetes_asyncio/client/configuration.py.orig @@ -432,7 +432,7 @@ conf = client.Configuration( "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: release-1.36\n"\ - "SDK Package Version: 36.0.0b1".\ + "SDK Package Version: 36.0.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/kubernetes_asyncio/setup.py b/kubernetes_asyncio/setup.py index 98036a3216..bb4a0e5a24 100644 --- a/kubernetes_asyncio/setup.py +++ b/kubernetes_asyncio/setup.py @@ -13,7 +13,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "client" -VERSION = "36.0.0b1" +VERSION = "36.0.0" # To install the library, run the following # # python setup.py install diff --git a/scripts/constants.py b/scripts/constants.py index 77a5613561..ccd32f339c 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -18,13 +18,13 @@ KUBERNETES_BRANCH = "release-1.36" # client version for packaging and releasing. -CLIENT_VERSION = "36.0.0b1" +CLIENT_VERSION = "36.0.0" # Name of the release package PACKAGE_NAME = "kubernetes" # 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-asyncio.py b/setup-asyncio.py index c8fdf7c205..68ff22aa87 100644 --- a/setup-asyncio.py +++ b/setup-asyncio.py @@ -16,9 +16,9 @@ # Do not edit these constants. They will be updated automatically # by scripts/update-client.sh. -CLIENT_VERSION = "36.0.0b1" +CLIENT_VERSION = "36.0.0" PACKAGE_NAME = "kubernetes_asyncio" -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "5 - Production/Stable" # To install the library, run the following # diff --git a/setup-release.py b/setup-release.py index 6a67945a89..9a99195350 100644 --- a/setup-release.py +++ b/setup-release.py @@ -16,9 +16,9 @@ # Do not edit these constants. They will be updated automatically # by scripts/update-client.sh. -CLIENT_VERSION = "36.0.0b1" +CLIENT_VERSION = "36.0.0" PACKAGE_NAME = "kubernetes" -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "5 - Production/Stable" # To install the library, run the following # diff --git a/setup.py b/setup.py index cd8ebc663f..e278c2adba 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 = "36.0.0b1" +CLIENT_VERSION = "36.0.0" PACKAGE_NAME = "kubernetes" -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "5 - Production/Stable" # To install the library, run the following #