diff --git a/.github/workflows/srtool.yml b/.github/workflows/srtool.yml index d88b0fe80..e350529c3 100644 --- a/.github/workflows/srtool.yml +++ b/.github/workflows/srtool.yml @@ -55,9 +55,9 @@ jobs: subwasm get wss://parallel-rpc.dwellir.com:443 --output parallel-live.wasm subwasm diff ${{ steps.srtool_build.outputs.wasm_compressed }} parallel-live.wasm | tee ${{ matrix.chain }}-diff.txt - name: Archive Runtime - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: - name: ${{ matrix.chain }}-runtime-${{ github.sha }} + name: ${{ matrix.chain }}-runtime-${{ github.sha }}-${{ matrix.runs-on }} path: | ${{ matrix.chain }}-info.json ${{ matrix.chain }}-info_compressed.json diff --git a/runtime/heiko/src/lib.rs b/runtime/heiko/src/lib.rs index 857331596..53db5bcb0 100644 --- a/runtime/heiko/src/lib.rs +++ b/runtime/heiko/src/lib.rs @@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("heiko"), impl_name: create_runtime_str!("heiko"), authoring_version: 1, - spec_version: 210, + spec_version: 211, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/runtime/kerria/src/lib.rs b/runtime/kerria/src/lib.rs index a1ae7a6e3..c349820ee 100644 --- a/runtime/kerria/src/lib.rs +++ b/runtime/kerria/src/lib.rs @@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("kerria"), impl_name: create_runtime_str!("kerria"), authoring_version: 1, - spec_version: 210, + spec_version: 211, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/runtime/parallel/src/lib.rs b/runtime/parallel/src/lib.rs index 4623e76ad..0bb610ef4 100644 --- a/runtime/parallel/src/lib.rs +++ b/runtime/parallel/src/lib.rs @@ -185,7 +185,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("parallel"), impl_name: create_runtime_str!("parallel"), authoring_version: 1, - spec_version: 210, + spec_version: 211, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/runtime/vanilla/src/lib.rs b/runtime/vanilla/src/lib.rs index e2dcfe135..106f8efe4 100644 --- a/runtime/vanilla/src/lib.rs +++ b/runtime/vanilla/src/lib.rs @@ -180,7 +180,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("vanilla"), impl_name: create_runtime_str!("vanilla"), authoring_version: 1, - spec_version: 210, + spec_version: 211, impl_version: 33, apis: RUNTIME_API_VERSIONS, transaction_version: 17, diff --git a/scripts/collator.sh b/scripts/collator.sh index 46818597d..536c24d0d 100755 --- a/scripts/collator.sh +++ b/scripts/collator.sh @@ -20,7 +20,7 @@ VOLUME="chains" NODE_KEY="$1" KEYSTORE_PATH="$2" NODE_NAME="$3" -DOCKER_IMAGE="parallelfinance/parallel:v2.1.0" +DOCKER_IMAGE="parallelfinance/parallel:v2.1.1" BASE_PATH="/data" if [ $# -lt 3 ]; then