From 0be6cf684bfdb8d178b4d54c3f5b0c896df281e5 Mon Sep 17 00:00:00 2001 From: Adam Dyess Date: Wed, 4 Sep 2024 14:53:51 -0500 Subject: [PATCH] 1.31 stable work: adjust enums, start building 1.32 --- cilib/enums.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cilib/enums.py b/cilib/enums.py index cff9eba5f..ad6417b4a 100644 --- a/cilib/enums.py +++ b/cilib/enums.py @@ -8,7 +8,7 @@ # Current supported STABLE K8s MAJOR.MINOR release. This determines what the # latest/stable channel is set to. It should be updated whenever a new CK # major.minor is GA. -K8S_STABLE_VERSION = "1.30" +K8S_STABLE_VERSION = "1.31" # Next MAJOR.MINOR # This controls whether or not we publish pre-release snaps in our channels. @@ -84,6 +84,7 @@ ("1.29", ["1.29/stable", "1.29/candidate", "1.29/beta", "1.29/edge"]), ("1.30", ["1.30/stable", "1.30/candidate", "1.30/beta", "1.30/edge"]), ("1.31", ["1.31/stable", "1.31/candidate", "1.31/beta", "1.31/edge"]), + ("1.32", ["1.32/edge"]), ] SNAP_K8S_TRACK_MAP = dict(SNAP_K8S_TRACK_LIST) @@ -105,6 +106,7 @@ "1.29": "ppa:k8s-maintainers/1.29", "1.30": "ppa:k8s-maintainers/1.30", "1.31": "ppa:k8s-maintainers/1.31", + "1.32": "ppa:k8s-maintainers/1.32", }