From e4a556ada283e70ec68239942bca1387a2a6e84d Mon Sep 17 00:00:00 2001 From: moizpgedge Date: Tue, 1 Jul 2025 14:06:10 +0500 Subject: [PATCH 1/2] pg17 is new default version --- build_all.sh | 2 +- cli/scripts/util.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_all.sh b/build_all.sh index f584fbdf..3f8f5f22 100755 --- a/build_all.sh +++ b/build_all.sh @@ -13,7 +13,7 @@ if [ ! $num_p == "0" ] && [ ! $num_p == "1" ]; then fi if [ "$1" == "" ]; then - majorV=16 + majorV=17 echo "" echo "### Defaulting to pg $majorV ###" else diff --git a/cli/scripts/util.py b/cli/scripts/util.py index b4335a21..98e80019 100644 --- a/cli/scripts/util.py +++ b/cli/scripts/util.py @@ -7,7 +7,7 @@ MY_VERSION = "25.1.0" MY_CODENAME = "" -DEFAULT_PG = "16" +DEFAULT_PG = "17" DEFAULT_SPOCK = "40" DEFAULT_SPOCK_17 = "40" MY_CMD = os.getenv("MY_CMD", None) From 4956f89869447a7053e1cc1f61304f3214c5855b Mon Sep 17 00:00:00 2001 From: Moiz Ibrar Date: Tue, 1 Jul 2025 20:41:15 +0500 Subject: [PATCH 2/2] spock5 conflict --- cli/scripts/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/scripts/util.py b/cli/scripts/util.py index 98e80019..09a3ba5a 100644 --- a/cli/scripts/util.py +++ b/cli/scripts/util.py @@ -8,8 +8,8 @@ MY_CODENAME = "" DEFAULT_PG = "17" -DEFAULT_SPOCK = "40" -DEFAULT_SPOCK_17 = "40" +DEFAULT_SPOCK = "50" +DEFAULT_SPOCK_17 = "50" MY_CMD = os.getenv("MY_CMD", None) MY_HOME = os.getenv("MY_HOME", None) MY_LIBS = f"{MY_HOME}/hub/scripts/lib"