From 8dbeca36155b047e2141657c9c2848cf40b2f4dd Mon Sep 17 00:00:00 2001 From: Yu Liao Date: Sun, 17 Sep 2023 16:24:04 +0000 Subject: [PATCH] update version constants for 28.1.0 release --- scripts/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/constants.py b/scripts/constants.py index 88670fd89..4fd1fafce 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -18,13 +18,13 @@ import sys KUBERNETES_BRANCH = "release-1.28" # client version for packaging and releasing. -CLIENT_VERSION = "28.1.0b1" +CLIENT_VERSION = "28.1.0" # Name of the release package PACKAGE_NAME = "kubernetes" # Stage of development, mainly used in setup.py's classifiers. -DEVELOPMENT_STATUS = "4 - Beta" +DEVELOPMENT_STATUS = "5 - Production/Stable" # If called directly, return the constant value given