Skip to content

Commit 9e9102e

Browse files
authored
Bumps CLI version to 25.2.1 and updated spock versions (#385)
1 parent c5e4581 commit 9e9102e

File tree

4 files changed

+18
-10
lines changed

4 files changed

+18
-10
lines changed

cli/scripts/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
import sys, os, tarfile, platform
55

6-
VER = "25.2.0"
6+
VER = "25.2.1"
77
REPO = os.getenv("REPO", "https://downloads.pgedge.com/platform/repos/download")
88

99
if sys.version_info < (3, 9):

cli/scripts/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55
import time
66

7-
MY_VERSION = "25.2.0"
7+
MY_VERSION = "25.2.1"
88
MY_CODENAME = ""
99

1010
DEFAULT_PG = "17"

env.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
hubV=25.2.0
2-
hubVV=25.2.0
1+
hubV=25.2.1
2+
hubVV=25.2.1
33

44
aceV=$hubV
55
kirkV=$hubV
@@ -10,9 +10,9 @@ ctlibsV=1.7
1010

1111
spock60V=6.0.0-devel-1
1212

13-
spock50V=5.0.0-1
13+
spock50V=5.0.1-1
1414

15-
spock40V=4.0.10-1
15+
spock40V=4.0.11-1
1616

1717
spock33V=3.3.6-1
1818

src/conf/versions.sql

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
DROP TABLE IF EXISTS hub;
33
CREATE TABLE hub(v TEXT NOT NULL PRIMARY KEY, c TEXT NOT NULL, d TEXT NOT NULL);
4-
INSERT INTO hub VALUES ('25.2.0', '', '20250815');
4+
INSERT INTO hub VALUES ('25.2.1', '', '20250827');
55

66
DROP VIEW IF EXISTS v_versions;
77
DROP VIEW IF EXISTS v_products;
@@ -328,6 +328,10 @@ INSERT INTO releases VALUES ('spock40-pg15', 4, 'spock', 'Spock', '', 'prod', ''
328328
INSERT INTO releases VALUES ('spock40-pg16', 4, 'spock', 'Spock', '', 'prod', '', 1, 'pgEdge Community', '', '');
329329
INSERT INTO releases VALUES ('spock40-pg17', 4, 'spock', 'Spock', '', 'prod', '', 1, 'pgEdge Community', '', '');
330330

331+
INSERT INTO versions VALUES ('spock40-pg15', '4.0.11-1', 'amd, arm', 1, '20250827', 'pg15', '', '');
332+
INSERT INTO versions VALUES ('spock40-pg16', '4.0.11-1', 'amd, arm', 1, '20250827', 'pg16', '', '');
333+
INSERT INTO versions VALUES ('spock40-pg17', '4.0.11-1', 'amd, arm', 1, '20250827', 'pg17', '', '');
334+
331335
INSERT INTO versions VALUES ('spock40-pg15', '4.0.10-1', 'amd, arm', 0, '20250224', 'pg15', '', '');
332336
INSERT INTO versions VALUES ('spock40-pg16', '4.0.10-1', 'amd, arm', 0, '20250224', 'pg16', '', '');
333337
INSERT INTO versions VALUES ('spock40-pg17', '4.0.10-1', 'amd, arm', 0, '20250224', 'pg17', '', '');
@@ -341,9 +345,13 @@ INSERT INTO releases VALUES ('spock50-pg15', 4, 'spock', 'Spock', '', 'prod', ''
341345
INSERT INTO releases VALUES ('spock50-pg16', 4, 'spock', 'Spock', '', 'prod', '', 1, 'pgEdge Community', '', '');
342346
INSERT INTO releases VALUES ('spock50-pg17', 4, 'spock', 'Spock', '', 'prod', '', 1, 'pgEdge Community', '', '');
343347

344-
INSERT INTO versions VALUES ('spock50-pg15', '5.0.0-1', 'amd, arm', 1, '20250715', 'pg15', '', '');
345-
INSERT INTO versions VALUES ('spock50-pg16', '5.0.0-1', 'amd, arm', 1, '20250715', 'pg16', '', '');
346-
INSERT INTO versions VALUES ('spock50-pg17', '5.0.0-1', 'amd, arm', 1, '20250715', 'pg17', '', '');
348+
INSERT INTO versions VALUES ('spock50-pg15', '5.0.1-1', 'amd, arm', 1, '20250827', 'pg15', '', '');
349+
INSERT INTO versions VALUES ('spock50-pg16', '5.0.1-1', 'amd, arm', 1, '20250827', 'pg16', '', '');
350+
INSERT INTO versions VALUES ('spock50-pg17', '5.0.1-1', 'amd, arm', 1, '20250827', 'pg17', '', '');
351+
352+
INSERT INTO versions VALUES ('spock50-pg15', '5.0.0-1', 'amd, arm', 0, '20250715', 'pg15', '', '');
353+
INSERT INTO versions VALUES ('spock50-pg16', '5.0.0-1', 'amd, arm', 0, '20250715', 'pg16', '', '');
354+
INSERT INTO versions VALUES ('spock50-pg17', '5.0.0-1', 'amd, arm', 0, '20250715', 'pg17', '', '');
347355

348356
-- ## LOLOR #############################
349357
INSERT INTO projects VALUES ('lolor', 'pge', 4, 0, '', 1, 'https://github.com/pgedge/lolor/tags',

0 commit comments

Comments
 (0)