Skip to content

Commit

Permalink
Release v6.5.0-1 (#1324)
Browse files Browse the repository at this point in the history
* Release `v6.5.0-1`

* Fix compile
  • Loading branch information
AurevoirXavier authored Nov 20, 2023
1 parent 2c674ee commit a324ec2
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 31 deletions.
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ edition = "2021"
homepage = "https://darwinia.network"
license = "GPL-3.0"
repository = "https://github.com/darwinia-network/darwinia"
version = "6.5.0"
version = "6.5.0-1"

[workspace.dependencies]
# crates.io
array-bytes = { version = "6.1" }
array-bytes = { version = "6.2" }
codec = { package = "parity-scale-codec", version = "3.6", default-features = false }
libsecp256k1 = { version = "0.7", default-features = false }
log = { version = "0.4" }
Expand Down
2 changes: 1 addition & 1 deletion pallet/ecdsa-authority/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub(crate) fn gen_pair(byte: u8) -> (SecretKey, AccountId) {
let seed = iter::repeat(byte).take(32).collect::<Vec<_>>();
let secret_key = SecretKey::parse_slice(&seed).unwrap();
let public_key = PublicKey::from_secret_key(&secret_key).serialize();
let address = array_bytes::slice_n_into_unchecked::<20, _, _>(
let address = array_bytes::slice_n_into_unchecked::<_, _, 20>(
&hashing::keccak_256(&public_key[1..65])[12..],
);

Expand Down
2 changes: 1 addition & 1 deletion runtime/crab/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Crab2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_5_0_0,
spec_version: 6_5_0_1,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/darwinia/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Darwinia2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_5_0_0,
spec_version: 6_5_0_1,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangolin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Pangolin2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_5_0_0,
spec_version: 6_5_0_1,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down
2 changes: 1 addition & 1 deletion runtime/pangoro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub const VERSION: sp_version::RuntimeVersion = sp_version::RuntimeVersion {
spec_name: sp_runtime::create_runtime_str!("Pangoro2"),
impl_name: sp_runtime::create_runtime_str!("DarwiniaOfficialRust"),
authoring_version: 0,
spec_version: 6_5_0_0,
spec_version: 6_5_0_1,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 0,
Expand Down

0 comments on commit a324ec2

Please sign in to comment.