Skip to content

Commit 666f778

Browse files
committed
Fix version pin to kubernetes 6.0.0, bump version
1 parent dd26985 commit 666f778

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@ jobs:
5353
stages:
5454
- lint
5555
- test
56-
- deploy
57-
- test-deploy
56+
- name: deploy
57+
if: (tag is present) and (type = push)
58+
- name: test-deploy
59+
if: (tag is present) and (type = push)

openshift/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818

1919
# Do not edit these constants. They will be updated automatically
2020
# by scripts/update-client.sh.
21-
__version__ = "0.6.2"
21+
__version__ = "0.6.3"
2222
__k8s_client_version__ = "6.0.0"

python-openshift.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
%global library openshift
44

55
Name: python-%{library}
6-
Version: 0.6.2
6+
Version: 0.6.3
77
Release: 10%{?dist}
88
Summary: Python client for the OpenShift API
99
License: MIT

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dictdiffer
22
jinja2
3-
kubernetes >= 6.0.0
3+
kubernetes == 6.0.0
44
python-string-utils
55
ruamel.yaml >= 0.15
66
six

scripts/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
# client version for packaging and releasing. It can
2525
# be different than SPEC_VERSION.
26-
CLIENT_VERSION = "0.6.2"
26+
CLIENT_VERSION = "0.6.3"
2727
KUBERNETES_CLIENT_VERSION = "6.0.0"
2828

2929
# Name of the release package

scripts/update-version.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
set -x
22
SCRIPT_ROOT=$(dirname "${BASH_SOURCE}")
3+
PACKAGE_NAME=$(python "${SCRIPT_ROOT}/constants.py" PACKAGE_NAME)
34
SOURCE_ROOT="${SCRIPT_ROOT}/../"
45
CLIENT_ROOT="${SOURCE_ROOT}/${PACKAGE_NAME}"
56
CLIENT_VERSION=$(python "${SCRIPT_ROOT}/constants.py" CLIENT_VERSION)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

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

0 commit comments

Comments
 (0)