mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 21:37:56 +00:00
631a5db536
* Move CI scripts and update references * Update paths in .gitlab-ci.yml * Removed outdated entries from CODEOWNERS
43 lines
1.3 KiB
Plaintext
43 lines
1.3 KiB
Plaintext
<%= print release_priority[:text] %> <%= puts " due to changes: *#{Changelog.changes_with_label(all_changes, release_priority[:label]).map(&:pretty_title).join(", ")}*" if release_priority[:priority] > 1 %>
|
|
|
|
Native runtimes:
|
|
|
|
- Polkadot: **<%= polkadot_runtime %>**
|
|
- Kusama: **<%= kusama_runtime %>**
|
|
- Westend: **<%= westend_runtime %>**
|
|
|
|
This release was tested against the following versions of `rustc`. Other versions may work.
|
|
|
|
- <%= rustc_stable %>
|
|
- <%= rustc_nightly %>
|
|
|
|
WASM runtimes built with [<%= polkadot_json['info']['generator']['name'] %> v<%= polkadot_json['info']['generator']['version'] %>](https://github.com/paritytech/srtool) using `<%= polkadot_json['rustc'] %>`.
|
|
|
|
Proposal hashes:
|
|
* `polkadot_runtime-v<%= polkadot_runtime %>.compact.compressed.wasm`: `<%= polkadot_json['runtimes']['compressed']['prop'] %>`
|
|
* `kusama_runtime-v<%= kusama_runtime %>.compact.compressed.wasm`: `<%= kusama_json['runtimes']['compressed']['prop'] %>`
|
|
|
|
<% unless misc_changes.empty? %>
|
|
## Changes
|
|
|
|
<% misc_changes.each do |c| %>
|
|
* <%= c[:pretty_title] %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% unless client_changes.empty? %>
|
|
## Client
|
|
|
|
<% client_changes.each do |c| %>
|
|
* <%= c[:pretty_title] %>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<% unless runtime_changes.empty? %>
|
|
## Runtime
|
|
|
|
<% runtime_changes.each do |c| %>
|
|
* <%= c[:pretty_title] %>
|
|
<% end %>
|
|
<% end %>
|