Skip to content

Commit 15344f7

Browse files
authored
Merge pull request #1983 from parallel-finance/upgrade/211
Bump to spec 211
2 parents a294e5d + 8649bb0 commit 15344f7

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/srtool.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ jobs:
5555
subwasm get wss://parallel-rpc.dwellir.com:443 --output parallel-live.wasm
5656
subwasm diff ${{ steps.srtool_build.outputs.wasm_compressed }} parallel-live.wasm | tee ${{ matrix.chain }}-diff.txt
5757
- name: Archive Runtime
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v4
5959
with:
60-
name: ${{ matrix.chain }}-runtime-${{ github.sha }}
60+
name: ${{ matrix.chain }}-runtime-${{ github.sha }}-${{ matrix.runs-on }}
6161
path: |
6262
${{ matrix.chain }}-info.json
6363
${{ matrix.chain }}-info_compressed.json

runtime/heiko/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("heiko"),
181181
impl_name: create_runtime_str!("heiko"),
182182
authoring_version: 1,
183-
spec_version: 210,
183+
spec_version: 211,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

runtime/kerria/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("kerria"),
181181
impl_name: create_runtime_str!("kerria"),
182182
authoring_version: 1,
183-
spec_version: 210,
183+
spec_version: 211,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

runtime/parallel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
185185
spec_name: create_runtime_str!("parallel"),
186186
impl_name: create_runtime_str!("parallel"),
187187
authoring_version: 1,
188-
spec_version: 210,
188+
spec_version: 211,
189189
impl_version: 33,
190190
apis: RUNTIME_API_VERSIONS,
191191
transaction_version: 17,

runtime/vanilla/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
180180
spec_name: create_runtime_str!("vanilla"),
181181
impl_name: create_runtime_str!("vanilla"),
182182
authoring_version: 1,
183-
spec_version: 210,
183+
spec_version: 211,
184184
impl_version: 33,
185185
apis: RUNTIME_API_VERSIONS,
186186
transaction_version: 17,

scripts/collator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ VOLUME="chains"
2020
NODE_KEY="$1"
2121
KEYSTORE_PATH="$2"
2222
NODE_NAME="$3"
23-
DOCKER_IMAGE="parallelfinance/parallel:v2.1.0"
23+
DOCKER_IMAGE="parallelfinance/parallel:v2.1.1"
2424
BASE_PATH="/data"
2525

2626
if [ $# -lt 3 ]; then

0 commit comments

Comments
 (0)