This repository was archived by the owner on Nov 15, 2023. It is now read-only.
File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 56
56
# consensus-critical logic that has changed. the runtime wasm blobs must be
57
57
# rebuilt.
58
58
59
- add_spec_version=" $( git diff " tags/release... ${CI_COMMIT_SHA} " " ${VERSIONS_FILE} " \
59
+ add_spec_version=" $( git diff tags/release ${CI_COMMIT_SHA} -- " ${VERSIONS_FILE} " \
60
60
| sed -n -r " s/^\+[[:space:]]+spec_version: +([0-9]+),$/\1/p" ) "
61
- sub_spec_version=" $( git diff " tags/release... ${CI_COMMIT_SHA} " " ${VERSIONS_FILE} " \
61
+ sub_spec_version=" $( git diff tags/release ${CI_COMMIT_SHA} -- " ${VERSIONS_FILE} " \
62
62
| sed -n -r " s/^\-[[:space:]]+spec_version: +([0-9]+),$/\1/p" ) "
63
63
64
64
79
79
# check for impl_version updates: if only the impl versions changed, we assume
80
80
# there is no consensus-critical logic that has changed.
81
81
82
- add_impl_version=" $( git diff " tags/release... ${CI_COMMIT_SHA} " " ${VERSIONS_FILE} " \
82
+ add_impl_version=" $( git diff tags/release ${CI_COMMIT_SHA} -- " ${VERSIONS_FILE} " \
83
83
| sed -n -r ' s/^\+[[:space:]]+impl_version: +([0-9]+),$/\1/p' ) "
84
- sub_impl_version=" $( git diff " tags/release... ${CI_COMMIT_SHA} " " ${VERSIONS_FILE} " \
84
+ sub_impl_version=" $( git diff tags/release ${CI_COMMIT_SHA} -- " ${VERSIONS_FILE} " \
85
85
| sed -n -r ' s/^\-[[:space:]]+impl_version: +([0-9]+),$/\1/p' ) "
86
86
87
87
Original file line number Diff line number Diff line change 76
76
//! * [`ink`](https://github.com/paritytech/ink) is
77
77
//! an [`eDSL`](https://wiki.haskell.org/Embedded_domain_specific_language) that enables writing
78
78
//! WebAssembly based smart contracts in the Rust programming language. This is a work in progress.
79
- //!
80
- //! ## Related Modules
81
- //!
82
- //! * [Balances](../pallet_balances/index.html)
83
79
84
80
#![ cfg_attr( not( feature = "std" ) , no_std) ]
85
81
#![ cfg_attr( feature = "runtime-benchmarks" , recursion_limit="512" ) ]
You can’t perform that action at this time.
0 commit comments