Skip to content

Commit 292fb0a

Browse files
authored
Merge pull request #2120 from yliaog/automated-release-of-28.1.0b1-upstream-release-28.0-1694205668
Automated release of 28.1.0b1 upstream release 28.0 1694205668
2 parents c70b84f + c22bcaf commit 292fb0a

File tree

9 files changed

+15
-10
lines changed

9 files changed

+15
-10
lines changed

CHANGELOG.md

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

38
Kubernetes API Version: v1.28.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ supported versions of Kubernetes clusters.
9797
- [client 25.y.z](https://pypi.org/project/kubernetes/25.3.0/): Kubernetes 1.24 or below (+-), Kubernetes 1.25 (✓), Kubernetes 1.26 or above (+-)
9898
- [client 26.y.z](https://pypi.org/project/kubernetes/26.1.0/): Kubernetes 1.25 or below (+-), Kubernetes 1.26 (✓), Kubernetes 1.27 or above (+-)
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 (+-)
100-
- [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 (+-)
100+
- [client 28.y.z](https://pypi.org/project/kubernetes/28.1.0b1/): Kubernetes 1.27 or below (+-), Kubernetes 1.28 (✓), Kubernetes 1.29 or above (+-)
101101

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

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.28
7-
- Package version: 28.1.0a1
7+
- Package version: 28.1.0b1
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__ = "28.1.0a1"
17+
__version__ = "28.1.0b1"
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__ = "28.1.0a1"
17+
__version__ = "28.1.0b1"
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/28.1.0a1/python'
81+
self.user_agent = 'OpenAPI-Generator/28.1.0b1/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.28\n"\
357-
"SDK Package Version: 28.1.0a1".\
357+
"SDK Package Version: 28.1.0b1".\
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.28"
1919

2020
# client version for packaging and releasing.
21-
CLIENT_VERSION = "28.1.0a1"
21+
CLIENT_VERSION = "28.1.0b1"
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 = "3 - Alpha"
27+
DEVELOPMENT_STATUS = "4 - Beta"
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 = "28.1.0a1"
19+
CLIENT_VERSION = "28.1.0b1"
2020
PACKAGE_NAME = "kubernetes"
21-
DEVELOPMENT_STATUS = "3 - Alpha"
21+
DEVELOPMENT_STATUS = "4 - Beta"
2222

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

0 commit comments

Comments
 (0)