diff --git a/kubernetes/README.md b/kubernetes/README.md index 8bd16b0357..31b80624d2 100644 --- a/kubernetes/README.md +++ b/kubernetes/README.md @@ -4,7 +4,7 @@ No description provided (generated by Swagger Codegen https://github.com/swagger This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: v1.14.1 -- Package version: 10.0.0-snapshot +- Package version: 10.0.0a1 - Build package: io.swagger.codegen.languages.PythonClientCodegen ## Requirements. diff --git a/kubernetes/__init__.py b/kubernetes/__init__.py index 545657a6b2..800b552559 100644 --- a/kubernetes/__init__.py +++ b/kubernetes/__init__.py @@ -14,7 +14,7 @@ __project__ = 'kubernetes' # The version is auto-updated. Please do not edit. -__version__ = "10.0.0-snapshot" +__version__ = "10.0.0a1" import kubernetes.client import kubernetes.config diff --git a/kubernetes/client/api_client.py b/kubernetes/client/api_client.py index fe6b5c5649..895f03c3f9 100644 --- a/kubernetes/client/api_client.py +++ b/kubernetes/client/api_client.py @@ -73,7 +73,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/10.0.0-snapshot/python' + self.user_agent = 'Swagger-Codegen/10.0.0a1/python' def __del__(self): if self._pool: diff --git a/kubernetes/client/configuration.py b/kubernetes/client/configuration.py index 6bc7b67b87..6f2bd6f5fe 100644 --- a/kubernetes/client/configuration.py +++ b/kubernetes/client/configuration.py @@ -240,5 +240,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: v1.14.1\n"\ - "SDK Package Version: 10.0.0-snapshot".\ + "SDK Package Version: 10.0.0a1".\ format(env=sys.platform, pyversion=sys.version) diff --git a/scripts/constants.py b/scripts/constants.py index 31feb020e6..68a4124c85 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -18,13 +18,13 @@ KUBERNETES_BRANCH = "release-1.14" # client version for packaging and releasing. -CLIENT_VERSION = "10.0.0-snapshot" +CLIENT_VERSION = "10.0.0a1" # Name of the release package PACKAGE_NAME = "kubernetes" # Stage of development, mainly used in setup.py's classifiers. -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "3 - Alpha" # If called directly, return the constant value given diff --git a/setup.py b/setup.py index ec50eb2de6..5a5ae559ba 100644 --- a/setup.py +++ b/setup.py @@ -16,9 +16,9 @@ # Do not edit these constants. They will be updated automatically # by scripts/update-client.sh. -CLIENT_VERSION = "10.0.0-snapshot" +CLIENT_VERSION = "10.0.0a1" PACKAGE_NAME = "kubernetes" -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "3 - Alpha" # To install the library, run the following #