Skip to content

Commit 587563c

Browse files
committed
Bump minimum required node versions to 10.1.4
1 parent 947f152 commit 587563c

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

files/configs/guild/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"LastKnownBlockVersion-Alt": 0,
77
"LastKnownBlockVersion-Major": 3,
88
"LastKnownBlockVersion-Minor": 1,
9-
"MinNodeVersion": "10.1.3",
9+
"MinNodeVersion": "10.1.4",
1010
"PeerSharing": true,
1111
"Protocol": "Cardano",
1212
"RequiresNetworkMagic": "RequiresMagic",

files/configs/mainnet/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"LastKnownBlockVersion-Major": 3,
88
"LastKnownBlockVersion-Minor": 0,
99
"MaxKnownMajorProtocolVersion": 2,
10-
"MinNodeVersion": "10.1.3",
10+
"MinNodeVersion": "10.1.4",
1111
"PeerSharing": false,
1212
"Protocol": "Cardano",
1313
"RequiresNetworkMagic": "RequiresNoMagic",

files/configs/preprod/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"LastKnownBlockVersion-Alt": 0,
77
"LastKnownBlockVersion-Major": 2,
88
"LastKnownBlockVersion-Minor": 0,
9-
"MinNodeVersion": "10.1.3",
9+
"MinNodeVersion": "10.1.4",
1010
"PeerSharing": false,
1111
"Protocol": "Cardano",
1212
"RequiresNetworkMagic": "RequiresMagic",

files/configs/preview/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"LastKnownBlockVersion-Alt": 0,
99
"LastKnownBlockVersion-Major": 3,
1010
"LastKnownBlockVersion-Minor": 1,
11-
"MinNodeVersion": "10.1.3",
11+
"MinNodeVersion": "10.1.4",
1212
"PeerSharing": false,
1313
"Protocol": "Cardano",
1414
"RequiresNetworkMagic": "RequiresMagic",

files/configs/sanchonet/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"LastKnownBlockVersion-Alt": 0,
99
"LastKnownBlockVersion-Major": 3,
1010
"LastKnownBlockVersion-Minor": 1,
11-
"MinNodeVersion": "10.1.3",
11+
"MinNodeVersion": "10.1.4",
1212
"PeerSharing": false,
1313
"Protocol": "Cardano",
1414
"RequiresNetworkMagic": "RequiresMagic",

files/node-deps.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"secp256k1": "v0.3.2",
1818
"sodium": "dbb48cce5429cb6585c9034f002568964f1ce567"
1919
},
20-
"10.1.3":
20+
"10.1.4":
2121
{
2222
"blst": "3dd0f804b1819e5d03fb22ca2e6fac105932043a",
2323
"secp256k1": "v0.3.2",

scripts/cnode-helper-scripts/env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1111,8 +1111,8 @@ node_version="$(${CNODEBIN} version | head -1 | cut -d' ' -f2)"
11111111
cli_version="$(${CCLI} version | head -1 | cut -d' ' -f2)"
11121112

11131113
# TODO: Bump minimum version to 10.1.4 once it has been out in wild for a while
1114-
if ! versionCheckNode "10.1.3" "${node_version}" || ! versionCheckNode "10.1.1.0" "${cli_version}"; then
1115-
echo -e "\nKoios scripts have now been upgraded to support cardano-node 10.1.3 ('${node_version}' found) / cardano-cli 10.1.x.x ('${cli_version}' found).\nPlease update cardano-node binaries (ensure to read release notes and update various configs using guild-deploy (use appropriate options to download/install/overwrite parts you need) or use tagged branches for older node version (eg: ./<script>.sh -b node-8.9.4 to switch scripts to an older branch).\n\n"
1114+
if ! versionCheckNode "10.1.4" "${node_version}" || ! versionCheckNode "10.1.1.0" "${cli_version}"; then
1115+
echo -e "\nKoios scripts have now been upgraded to support cardano-node 10.1.4 ('${node_version}' found) / cardano-cli 10.1.x.x ('${cli_version}' found).\nPlease update cardano-node binaries (ensure to read release notes and update various configs using guild-deploy (use appropriate options to download/install/overwrite parts you need) or use tagged branches for older node version (eg: ./<script>.sh -b node-8.9.4 to switch scripts to an older branch).\n\n"
11161116
return 1
11171117
fi
11181118

0 commit comments

Comments
 (0)