Skip to content

Commit bc8c691

Browse files
authored
Merge pull request #2281 from yliaog/automated-release-of-31.0.0-upstream-release-31.0-1726263540
Automated release of 31.0.0 upstream release 31.0 1726263540
2 parents d8ee677 + dbdba2b commit bc8c691

9 files changed

+17
-13
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
# v31.0.0b1
1+
# v31.0.0
22

33
Kubernetes API Version: v1.31.0
44

5+
# v31.0.0b1
6+
7+
Kubernetes API Version: v1.31.0
58

69
# v31.0.0a1
710

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ supported versions of Kubernetes clusters.
100100
- [client 28.y.z](https://pypi.org/project/kubernetes/28.1.0/): Kubernetes 1.27 or below (+-), Kubernetes 1.28 (✓), Kubernetes 1.29 or above (+-)
101101
- [client 29.y.z](https://pypi.org/project/kubernetes/29.0.0/): Kubernetes 1.28 or below (+-), Kubernetes 1.29 (✓), Kubernetes 1.30 or above (+-)
102102
- [client 30.y.z](https://pypi.org/project/kubernetes/30.1.0/): Kubernetes 1.29 or below (+-), Kubernetes 1.30 (✓), Kubernetes 1.31 or above (+-)
103-
- [client 31.y.z](https://pypi.org/project/kubernetes/31.0.0b1/): Kubernetes 1.30 or below (+-), Kubernetes 1.31 (✓), Kubernetes 1.32 or above (+-)
103+
- [client 31.y.z](https://pypi.org/project/kubernetes/31.0.0/): Kubernetes 1.30 or below (+-), Kubernetes 1.31 (✓), Kubernetes 1.32 or above (+-)
104104

105105

106106
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
@@ -161,12 +161,13 @@ between client-python versions.
161161
| 27.0 Alpha/Beta | Kubernetes main repo, 1.27 branch ||
162162
| 27.0 | Kubernetes main repo, 1.27 branch ||
163163
| 28.0 Alpha/Beta | Kubernetes main repo, 1.28 branch ||
164-
| 28.0 | Kubernetes main repo, 1.28 branch | |
164+
| 28.0 | Kubernetes main repo, 1.28 branch | |
165165
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
166166
| 29.0 | Kubernetes main repo, 1.29 branch ||
167167
| 30.0 Alpha/Beta | Kubernetes main repo, 1.30 branch ||
168168
| 30.0 | Kubernetes main repo, 1.30 branch ||
169-
| 31.0 Alpha/Beta | Kubernetes main repo, 1.31 branch ||
169+
| 31.0 Alpha/Beta | Kubernetes main repo, 1.31 branch ||
170+
| 31.0 | Kubernetes main repo, 1.31 branch ||
170171

171172
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
172173

kubernetes/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: release-1.31
7-
- Package version: 31.0.0b1
7+
- Package version: 31.0.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

kubernetes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
__project__ = 'kubernetes'
1616
# The version is auto-updated. Please do not edit.
17-
__version__ = "31.0.0b1"
17+
__version__ = "31.0.0"
1818

1919
from . import client
2020
from . import config

kubernetes/client/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

17-
__version__ = "31.0.0b1"
17+
__version__ = "31.0.0"
1818

1919
# import apis into sdk package
2020
from kubernetes.client.api.well_known_api import WellKnownApi

kubernetes/client/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7878
self.default_headers[header_name] = header_value
7979
self.cookie = cookie
8080
# Set default User-Agent.
81-
self.user_agent = 'OpenAPI-Generator/31.0.0b1/python'
81+
self.user_agent = 'OpenAPI-Generator/31.0.0/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

kubernetes/client/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def to_debug_report(self):
354354
"OS: {env}\n"\
355355
"Python Version: {pyversion}\n"\
356356
"Version of the API: release-1.31\n"\
357-
"SDK Package Version: 31.0.0b1".\
357+
"SDK Package Version: 31.0.0".\
358358
format(env=sys.platform, pyversion=sys.version)
359359

360360
def get_host_settings(self):

scripts/constants.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
KUBERNETES_BRANCH = "release-1.31"
1919

2020
# client version for packaging and releasing.
21-
CLIENT_VERSION = "31.0.0b1"
21+
CLIENT_VERSION = "31.0.0"
2222

2323
# Name of the release package
2424
PACKAGE_NAME = "kubernetes"
2525

2626
# Stage of development, mainly used in setup.py's classifiers.
27-
DEVELOPMENT_STATUS = "4 - Beta"
27+
DEVELOPMENT_STATUS = "5 - Production/Stable"
2828

2929

3030
# If called directly, return the constant value given

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616

1717
# Do not edit these constants. They will be updated automatically
1818
# by scripts/update-client.sh.
19-
CLIENT_VERSION = "31.0.0b1"
19+
CLIENT_VERSION = "31.0.0"
2020
PACKAGE_NAME = "kubernetes"
21-
DEVELOPMENT_STATUS = "4 - Beta"
21+
DEVELOPMENT_STATUS = "5 - Production/Stable"
2222

2323
# To install the library, run the following
2424
#

0 commit comments

Comments
 (0)