diff --git a/.github/workflows/publish_draft_releases.yml b/.github/workflows/publish_draft_releases.yml index 19a1c6ab8..c724bf727 100644 --- a/.github/workflows/publish_draft_releases.yml +++ b/.github/workflows/publish_draft_releases.yml @@ -48,10 +48,13 @@ jobs: - name: build runtime id: srtool-build uses: chevdor/srtool-actions@v0.9.1 + env: + BUILD_OPTS: "--features on-chain-release-build" with: image: paritytech/srtool tag: 1.74.0 chain: ${{ matrix.runtime.name }} + profile: "production" - name: persist srtool digest run: > echo '${{ steps.srtool-build.outputs.json }}' | diff --git a/runtime/calamari/src/lib.rs b/runtime/calamari/src/lib.rs index eda0663d6..e5c411658 100644 --- a/runtime/calamari/src/lib.rs +++ b/runtime/calamari/src/lib.rs @@ -143,10 +143,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("calamari"), impl_name: create_runtime_str!("calamari"), authoring_version: 2, - spec_version: 4710, + spec_version: 4720, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 20, + transaction_version: 21, state_version: 0, }; diff --git a/runtime/manta/src/lib.rs b/runtime/manta/src/lib.rs index 8e54f2f10..5e8569595 100644 --- a/runtime/manta/src/lib.rs +++ b/runtime/manta/src/lib.rs @@ -146,10 +146,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("manta"), impl_name: create_runtime_str!("manta"), authoring_version: 1, - spec_version: 4710, + spec_version: 4720, impl_version: 1, apis: RUNTIME_API_VERSIONS, - transaction_version: 9, + transaction_version: 10, state_version: 1, };