From 85713b3b284e5972cdc08e787edff34f4ff574e8 Mon Sep 17 00:00:00 2001 From: Fabian von Feilitzsch Date: Wed, 24 Feb 2021 16:46:25 -0500 Subject: [PATCH] Bump version to 0.12.0rc1 --- openshift/__init__.py | 4 ++-- python-openshift.spec | 2 +- scripts/constants.py | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/openshift/__init__.py b/openshift/__init__.py index c40d6957..40f6b987 100644 --- a/openshift/__init__.py +++ b/openshift/__init__.py @@ -14,5 +14,5 @@ # Do not edit these constants. They will be updated automatically # by scripts/update-version.sh. -__version__ = "0.10.0dev1" -__k8s_client_version__ = "9.0.0" +__version__ = "0.12.0rc1" +__k8s_client_version__ = "12.0" diff --git a/python-openshift.spec b/python-openshift.spec index 76f94435..c7ee35e5 100644 --- a/python-openshift.spec +++ b/python-openshift.spec @@ -16,7 +16,7 @@ %endif Name: python-%{library} -Version: 0.10.0dev1 +Version: 0.12.0rc1 Release: 1%{?dist} Summary: Python client for the OpenShift API License: ASL 2.0 diff --git a/scripts/constants.py b/scripts/constants.py index 8c22e5e8..d18e72c0 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -23,8 +23,8 @@ # client version for packaging and releasing. It can # be different than SPEC_VERSION. -CLIENT_VERSION = "0.10.0dev1" -KUBERNETES_CLIENT_VERSION = "10.0.1" +CLIENT_VERSION = "0.12.0rc1" +KUBERNETES_CLIENT_VERSION = "12.0" # Name of the release package PACKAGE_NAME = "openshift" diff --git a/setup.py b/setup.py index d2b794c1..857bf067 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # Do not edit these constants. They will be updated automatically # by scripts/update-client.sh. -CLIENT_VERSION = "0.10.0dev1" +CLIENT_VERSION = "0.12.0rc1" PACKAGE_NAME = "openshift" DEVELOPMENT_STATUS = "3 - Alpha"