From 173931a89b3e86d7d4c5ce9ba45dfeed14419174 Mon Sep 17 00:00:00 2001 From: yliao Date: Fri, 13 Sep 2024 21:39:03 +0000 Subject: [PATCH] update version constants for 31.0.0 release --- scripts/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/constants.py b/scripts/constants.py index ae18a12c6..5b34142d8 100644 --- a/scripts/constants.py +++ b/scripts/constants.py @@ -18,13 +18,13 @@ import sys KUBERNETES_BRANCH = "release-1.31" # client version for packaging and releasing. -CLIENT_VERSION = "31.0.0b1" +CLIENT_VERSION = "31.0.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