From a991bd5e9a1afaf6ef79fdd0a5337c0eded71667 Mon Sep 17 00:00:00 2001 From: Haowei Cai Date: Thu, 12 Mar 2020 08:57:04 -0700 Subject: [PATCH] create 0.0.0a5 client --- kubernetes/README.md | 2 +- kubernetes/__init__.py | 2 +- kubernetes/client/api_client.py | 2 +- kubernetes/client/configuration.py | 2 +- scripts/constants.py | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kubernetes/README.md b/kubernetes/README.md index 81da518b3..796995a80 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.11 -- Package version: 0.0.0a4 +- Package version: 0.0.0a5 - Build package: io.swagger.codegen.languages.PythonClientCodegen ## Requirements. diff --git a/kubernetes/__init__.py b/kubernetes/__init__.py index a0cd02caf..3397426d8 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__ = "0.0.0a4" +__version__ = "0.0.0a5" import kubernetes.client import kubernetes.config diff --git a/kubernetes/client/api_client.py b/kubernetes/client/api_client.py index ad125cfd1..8ae571d29 100644 --- a/kubernetes/client/api_client.py +++ b/kubernetes/client/api_client.py @@ -74,7 +74,7 @@ class ApiClient(object): self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/0.0.0a4/python' + self.user_agent = 'Swagger-Codegen/0.0.0a5/python' def __enter__(self): return self diff --git a/kubernetes/client/configuration.py b/kubernetes/client/configuration.py index 552a54acd..5522f5954 100644 --- a/kubernetes/client/configuration.py +++ b/kubernetes/client/configuration.py @@ -240,5 +240,5 @@ class Configuration(with_metaclass(TypeWithDefault, object)): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: v1.14.11\n"\ - "SDK Package Version: 0.0.0a4".\ + "SDK Package Version: 0.0.0a5".\ format(env=sys.platform, pyversion=sys.version) diff --git a/scripts/constants.py b/scripts/constants.py index 045226ca2..955aaa6e5 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -18,7 +18,7 @@ import sys KUBERNETES_BRANCH = "release-1.14" # client version for packaging and releasing. -CLIENT_VERSION = "0.0.0a4" +CLIENT_VERSION = "0.0.0a5" # Name of the release package PACKAGE_NAME = "kubernetes" diff --git a/setup.py b/setup.py index 4827999f4..a96a9f589 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import setup # Do not edit these constants. They will be updated automatically # by scripts/update-client.sh. -CLIENT_VERSION = "0.0.0a4" +CLIENT_VERSION = "0.0.0a5" PACKAGE_NAME = "kubernetes" DEVELOPMENT_STATUS = "3 - Alpha"