Skip to content

Commit 2cf703b

Browse files
author
ferrell-code
authored
Release v4.7.2 (#1347)
* runtime metadta-hash in ci Signed-off-by: Charles Ferrell <[email protected]> * bump version Signed-off-by: Charles Ferrell <[email protected]> --------- Signed-off-by: Charles Ferrell <[email protected]>
1 parent 9cfedab commit 2cf703b

File tree

5 files changed

+29
-26
lines changed

5 files changed

+29
-26
lines changed

.github/workflows/publish_draft_releases.yml

+3
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,13 @@ jobs:
4848
- name: build runtime
4949
id: srtool-build
5050
uses: chevdor/[email protected]
51+
env:
52+
BUILD_OPTS: "--features on-chain-release-build"
5153
with:
5254
image: paritytech/srtool
5355
tag: 1.74.0
5456
chain: ${{ matrix.runtime.name }}
57+
profile: "production"
5558
- name: persist srtool digest
5659
run: >
5760
echo '${{ steps.srtool-build.outputs.json }}' |

Cargo.lock

+21-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ homepage = 'https://manta.network'
55
license = 'GPL-3.0'
66
repository = 'https://github.com/Manta-Network/Manta/'
77
rust-version = '1.74'
8-
version = '4.7.1'
8+
version = '4.7.2'
99

1010
[workspace]
1111
members = [

runtime/calamari/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
143143
spec_name: create_runtime_str!("calamari"),
144144
impl_name: create_runtime_str!("calamari"),
145145
authoring_version: 2,
146-
spec_version: 4710,
146+
spec_version: 4720,
147147
impl_version: 1,
148148
apis: RUNTIME_API_VERSIONS,
149-
transaction_version: 20,
149+
transaction_version: 21,
150150
state_version: 0,
151151
};
152152

runtime/manta/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
146146
spec_name: create_runtime_str!("manta"),
147147
impl_name: create_runtime_str!("manta"),
148148
authoring_version: 1,
149-
spec_version: 4710,
149+
spec_version: 4720,
150150
impl_version: 1,
151151
apis: RUNTIME_API_VERSIONS,
152-
transaction_version: 9,
152+
transaction_version: 10,
153153
state_version: 1,
154154
};
155155

0 commit comments

Comments
 (0)