Skip to content

Commit 888d7df

Browse files
authored
Merge pull request #1527 from roycaihw/v18-ga
Release 18.20.0
2 parents 6850340 + 5231791 commit 888d7df

File tree

9 files changed

+15
-14
lines changed

9 files changed

+15
-14
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# v18.0.0-snapshot
1+
# v18.20.0
22

3-
Kubernetes API Version: To Be Updated
3+
Kubernetes API Version: 1.18.20
44

55
### Feature
66
- Support for the dryRun parameter has been added to the dynamic client. ([kubernetes-client/python-base#247](https://github.com/kubernetes-client/python-base/pull/247), [@gravesm](https://github.com/gravesm))

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ supported versions of Kubernetes clusters.
8787
- [client 11.y.z](https://pypi.org/project/kubernetes/11.0.0/): Kubernetes 1.14 or below (+-), Kubernetes 1.15 (✓), Kubernetes 1.16 or above (+-)
8888
- [client 12.y.z](https://pypi.org/project/kubernetes/12.0.1/): Kubernetes 1.15 or below (+-), Kubernetes 1.16 (✓), Kubernetes 1.17 or above (+-)
8989
- [client 17.y.z](https://pypi.org/project/kubernetes/17.17.0/): Kubernetes 1.16 or below (+-), Kubernetes 1.17 (✓), Kubernetes 1.18 or above (+-)
90-
- [client 18.y.z](https://pypi.org/project/kubernetes/18.20.0b1/): Kubernetes 1.17 or below (+-), Kubernetes 1.18 (✓), Kubernetes 1.19 or above (+-)
90+
- [client 18.y.z](https://pypi.org/project/kubernetes/18.20.0/): Kubernetes 1.17 or below (+-), Kubernetes 1.18 (✓), Kubernetes 1.19 or above (+-)
9191

9292
> See [here](#homogenizing-the-kubernetes-python-client-versions) for an explaination of why there is no v13-v16 release.
9393
@@ -121,12 +121,13 @@ between client-python versions.
121121
| 10.0 Alpha/Beta | Kubernetes main repo, 1.14 branch ||
122122
| 10.0 | Kubernetes main repo, 1.14 branch ||
123123
| 11.0 Alpha/Beta | Kubernetes main repo, 1.15 branch ||
124-
| 11.0 | Kubernetes main repo, 1.15 branch | |
124+
| 11.0 | Kubernetes main repo, 1.15 branch | |
125125
| 12.0 Alpha/Beta | Kubernetes main repo, 1.16 branch ||
126126
| 12.0 | Kubernetes main repo, 1.16 branch ||
127127
| 17.0 Alpha/Beta | Kubernetes main repo, 1.17 branch ||
128128
| 17.0 | Kubernetes main repo, 1.17 branch ||
129-
| 18.0 Alpha/Beta | Kubernetes main repo, 1.18 branch ||
129+
| 18.0 Alpha/Beta | Kubernetes main repo, 1.18 branch ||
130+
| 18.0 | Kubernetes main repo, 1.18 branch ||
130131

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

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.18
7-
- Package version: 18.20.0b1
7+
- Package version: 18.20.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__ = "18.20.0b1"
17+
__version__ = "18.20.0"
1818

1919
import kubernetes.client
2020
import kubernetes.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__ = "18.20.0b1"
17+
__version__ = "18.20.0"
1818

1919
# import apis into sdk package
2020
from kubernetes.client.api.admissionregistration_api import AdmissionregistrationApi

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/18.20.0b1/python'
81+
self.user_agent = 'OpenAPI-Generator/18.20.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
@@ -347,7 +347,7 @@ def to_debug_report(self):
347347
"OS: {env}\n"\
348348
"Python Version: {pyversion}\n"\
349349
"Version of the API: release-1.18\n"\
350-
"SDK Package Version: 18.20.0b1".\
350+
"SDK Package Version: 18.20.0".\
351351
format(env=sys.platform, pyversion=sys.version)
352352

353353
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.18"
1919

2020
# client version for packaging and releasing.
21-
CLIENT_VERSION = "18.20.0b1"
21+
CLIENT_VERSION = "18.20.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 = "18.20.0b1"
19+
CLIENT_VERSION = "18.20.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)