Skip to content

Commit

Permalink
Fix version pin to kubernetes 6.0.0, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianvf committed Aug 17, 2018
1 parent dd26985 commit 666f778
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,7 @@ jobs:
stages:
- lint
- test
- deploy
- test-deploy
- name: deploy
if: (tag is present) and (type = push)
- name: test-deploy
if: (tag is present) and (type = push)
2 changes: 1 addition & 1 deletion openshift/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@

# Do not edit these constants. They will be updated automatically
# by scripts/update-client.sh.
__version__ = "0.6.2"
__version__ = "0.6.3"
__k8s_client_version__ = "6.0.0"
2 changes: 1 addition & 1 deletion python-openshift.spec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
%global library openshift

Name: python-%{library}
Version: 0.6.2
Version: 0.6.3
Release: 10%{?dist}
Summary: Python client for the OpenShift API
License: MIT
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dictdiffer
jinja2
kubernetes >= 6.0.0
kubernetes == 6.0.0
python-string-utils
ruamel.yaml >= 0.15
six
2 changes: 1 addition & 1 deletion scripts/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

# client version for packaging and releasing. It can
# be different than SPEC_VERSION.
CLIENT_VERSION = "0.6.2"
CLIENT_VERSION = "0.6.3"
KUBERNETES_CLIENT_VERSION = "6.0.0"

# Name of the release package
Expand Down
1 change: 1 addition & 0 deletions scripts/update-version.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
set -x
SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")
PACKAGE_NAME=$(python "${SCRIPT_ROOT}/constants.py" PACKAGE_NAME)
SOURCE_ROOT="${SCRIPT_ROOT}/../"
CLIENT_ROOT="${SOURCE_ROOT}/${PACKAGE_NAME}"
CLIENT_VERSION=$(python "${SCRIPT_ROOT}/constants.py" CLIENT_VERSION)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# Do not edit these constants. They will be updated automatically
# by scripts/update-client.sh.
CLIENT_VERSION = "0.6.2"
CLIENT_VERSION = "0.6.3"
PACKAGE_NAME = "openshift"
DEVELOPMENT_STATUS = "3 - Alpha"

Expand Down

0 comments on commit 666f778

Please sign in to comment.