Skip to content

Commit 6b6201d

Browse files
authored
Merge pull request #2244 from yliaog/automated-release-of-30.1.0-upstream-release-30.0-1717619692
Automated release of 30.1.0 upstream release 30.0 1717619692
2 parents bc977b4 + 58e29d0 commit 6b6201d

File tree

9 files changed

+18
-12
lines changed

9 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# v30.1.0
2+
3+
Kubernetes API Version: v1.30.1
4+
5+
16
# v30.1.0b1
27

38
Kubernetes API Version: v1.30.1

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ supported versions of Kubernetes clusters.
9999
- [client 27.y.z](https://pypi.org/project/kubernetes/27.2.0/): Kubernetes 1.26 or below (+-), Kubernetes 1.27 (✓), Kubernetes 1.28 or above (+-)
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 (+-)
102-
- [client 30.y.z](https://pypi.org/project/kubernetes/30.1.0b1/): Kubernetes 1.29 or below (+-), Kubernetes 1.30 (✓), Kubernetes 1.31 or above (+-)
102+
- [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 (+-)
103103

104104

105105
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explanation of why there is no v13-v16 release.
@@ -158,12 +158,13 @@ between client-python versions.
158158
| 26.0 Alpha/Beta | Kubernetes main repo, 1.26 branch ||
159159
| 26.0 | Kubernetes main repo, 1.26 branch ||
160160
| 27.0 Alpha/Beta | Kubernetes main repo, 1.27 branch ||
161-
| 27.0 | Kubernetes main repo, 1.27 branch | |
161+
| 27.0 | Kubernetes main repo, 1.27 branch | |
162162
| 28.0 Alpha/Beta | Kubernetes main repo, 1.28 branch ||
163163
| 28.0 | Kubernetes main repo, 1.28 branch ||
164164
| 29.0 Alpha/Beta | Kubernetes main repo, 1.29 branch ||
165165
| 29.0 | Kubernetes main repo, 1.29 branch ||
166-
| 30.0 Alpha/Beta | Kubernetes main repo, 1.30 branch ||
166+
| 30.0 Alpha/Beta | Kubernetes main repo, 1.30 branch ||
167+
| 30.0 | Kubernetes main repo, 1.30 branch ||
167168

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

kubernetes/README.md

Lines changed: 1 addition & 1 deletion
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.30
7-
- Package version: 30.1.0b1
7+
- Package version: 30.1.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

kubernetes/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "30.1.0b1"
17+
__version__ = "30.1.0"
1818

1919
from . import client
2020
from . import config

kubernetes/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from __future__ import absolute_import
1616

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

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

kubernetes/client/api_client.py

Lines changed: 1 addition & 1 deletion
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/30.1.0b1/python'
81+
self.user_agent = 'OpenAPI-Generator/30.1.0/python'
8282
self.client_side_validation = configuration.client_side_validation
8383

8484
def __enter__(self):

kubernetes/client/configuration.py

Lines changed: 1 addition & 1 deletion
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.30\n"\
357-
"SDK Package Version: 30.1.0b1".\
357+
"SDK Package Version: 30.1.0".\
358358
format(env=sys.platform, pyversion=sys.version)
359359

360360
def get_host_settings(self):

scripts/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
KUBERNETES_BRANCH = "release-1.30"
1919

2020
# client version for packaging and releasing.
21-
CLIENT_VERSION = "30.1.0b1"
21+
CLIENT_VERSION = "30.1.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

Lines changed: 2 additions & 2 deletions
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 = "30.1.0b1"
19+
CLIENT_VERSION = "30.1.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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy