Skip to content

Commit 543eea9

Browse files
committed
Update version constants for release-4.0
1 parent 640c2aa commit 543eea9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

kubernetes/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Swagger Codegen https://github.com/swagger
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: v1.8.2
7-
- Package version: 4.0.0-snapshot
7+
- Package version: 4.0.0a1
88
- Build package: io.swagger.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__ = "4.0.0-snapshot"
17+
__version__ = "4.0.0a1"
1818

1919
import kubernetes.client
2020
import kubernetes.config

kubernetes/client/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
7171
self.default_headers[header_name] = header_value
7272
self.cookie = cookie
7373
# Set default User-Agent.
74-
self.user_agent = 'Swagger-Codegen/4.0.0-snapshot/python'
74+
self.user_agent = 'Swagger-Codegen/4.0.0a1/python'
7575

7676
def __del__(self):
7777
self.pool.close()

kubernetes/client/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,5 +240,5 @@ def to_debug_report(self):
240240
"OS: {env}\n"\
241241
"Python Version: {pyversion}\n"\
242242
"Version of the API: v1.8.2\n"\
243-
"SDK Package Version: 4.0.0-snapshot".\
243+
"SDK Package Version: 4.0.0a1".\
244244
format(env=sys.platform, pyversion=sys.version)

scripts/constants.py

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

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

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

0 commit comments

Comments
 (0)