Skip to content

Commit

Permalink
Bump master version to above latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianvf committed Nov 29, 2018
1 parent c6f2168 commit 836dd10
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions 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.7.0"
__k8s_client_version__ = "7.0.0"
__version__ = "0.9.0"
__k8s_client_version__ = "8.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.8.0
Version: 0.9.0
Release: 1%{?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 >= 7.0.0, < 8.0.0
kubernetes ~= 8.0.0
python-string-utils
ruamel.yaml >= 0.15
six
4 changes: 2 additions & 2 deletions scripts/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

# client version for packaging and releasing. It can
# be different than SPEC_VERSION.
CLIENT_VERSION = "0.7.0"
KUBERNETES_CLIENT_VERSION = "7.0.0"
CLIENT_VERSION = "0.9.0"
KUBERNETES_CLIENT_VERSION = "8.0.0"

# Name of the release package
PACKAGE_NAME = "openshift"
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ sed -i'' "s/^__version__ = .*/__version__ = \\\"${CLIENT_VERSION}\\\"/" "${CLIEN
sed -i'' "s/^Version:.*/Version: ${CLIENT_VERSION}/" "${SCRIPT_ROOT}/../python-openshift.spec"
sed -i'' "s/^kubernetes ~= .*/kubernetes ~= ${KUBERNETES_CLIENT_VERSION}/" "${SCRIPT_ROOT}/../requirements.txt"
sed -i'' "s/^__k8s_client_version__ = .*/__k8s_client_version__ = \\\"${KUBERNETES_CLIENT_VERSION}\\\"/" "${CLIENT_ROOT}/__init__.py"
sed -i'' "s/^kubernetes .=.*/kubernetes == ${KUBERNETES_CLIENT_VERSION}/" ${SOURCE_ROOT}/requirements.txt
sed -i'' "s/^kubernetes .=.*/kubernetes ~= ${KUBERNETES_CLIENT_VERSION}/" ${SOURCE_ROOT}/requirements.txt
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.7.0"
CLIENT_VERSION = "0.9.0"
PACKAGE_NAME = "openshift"
DEVELOPMENT_STATUS = "3 - Alpha"

Expand Down

0 comments on commit 836dd10

Please sign in to comment.