Skip to content

Commit

Permalink
Update version constants for 6.0.0b1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
roycaihw committed Mar 13, 2018
1 parent 369366a commit 04993b1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0
- Package version: 6.0.0-snapshot
- Package version: 6.0.0b1
- Build package: io.swagger.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

__project__ = 'kubernetes'
# The version is auto-updated. Please do not edit.
__version__ = "6.0.0-snapshot"
__version__ = "6.0.0b1"

import kubernetes.client
import kubernetes.config
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, cook
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'Swagger-Codegen/6.0.0-snapshot/python'
self.user_agent = 'Swagger-Codegen/6.0.0b1/python'

def __del__(self):
self.pool.close()
Expand Down
2 changes: 1 addition & 1 deletion kubernetes/client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,5 +240,5 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v1.10.0\n"\
"SDK Package Version: 6.0.0-snapshot".\
"SDK Package Version: 6.0.0b1".\
format(env=sys.platform, pyversion=sys.version)
2 changes: 1 addition & 1 deletion scripts/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
KUBERNETES_BRANCH = "release-1.10"

# client version for packaging and releasing.
CLIENT_VERSION = "6.0.0-snapshot"
CLIENT_VERSION = "6.0.0b1"

# Name of the release package
PACKAGE_NAME = "kubernetes"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# Do not edit these constants. They will be updated automatically
# by scripts/update-client.sh.
CLIENT_VERSION = "6.0.0-snapshot"
CLIENT_VERSION = "6.0.0b1"
PACKAGE_NAME = "kubernetes"
DEVELOPMENT_STATUS = "4 - Beta"

Expand Down

0 comments on commit 04993b1

Please sign in to comment.