From 14a568a13ea0657819ed2e9389acec226ecc1098 Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Andres <11448715+al3mart@users.noreply.github.com> Date: Fri, 17 May 2024 17:49:19 +0200 Subject: [PATCH 1/2] fix(chain-spec): amend developent and local naming --- chain-spec-generator/src/relay_chain_specs.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/chain-spec-generator/src/relay_chain_specs.rs b/chain-spec-generator/src/relay_chain_specs.rs index 67ba0ba..e49508d 100644 --- a/chain-spec-generator/src/relay_chain_specs.rs +++ b/chain-spec-generator/src/relay_chain_specs.rs @@ -229,14 +229,14 @@ fn paseo_development_config_genesis() -> serde_json::Value { ) } -/// Polkadot development config (single validator Alice) +/// Paseo development config (single validator Alice) pub fn paseo_development_config() -> Result, String> { Ok(Box::new( PaseoChainSpec::builder( - paseo_runtime::WASM_BINARY.ok_or("Polkadot development wasm not available")?, + paseo_runtime::WASM_BINARY.ok_or("Paseo development wasm not available")?, Default::default(), ) - .with_name("Polakdot Development") + .with_name("Paseo Development") .with_id("paseo-dev") .with_chain_type(ChainType::Development) .with_genesis_config_patch(paseo_development_config_genesis()) @@ -254,14 +254,14 @@ fn paseo_local_testnet_genesis() -> serde_json::Value { ) } -/// Polkadot local testnet config (multivalidator Alice + Bob) +/// Paseo local testnet config (multivalidator Alice + Bob) pub fn paseo_local_testnet_config() -> Result, String> { Ok(Box::new( PaseoChainSpec::builder( - paseo_runtime::WASM_BINARY.ok_or("Polkadot development wasm not available")?, + paseo_runtime::WASM_BINARY.ok_or("Paseo development wasm not available")?, Default::default(), ) - .with_name("Polkadot Local Testnet") + .with_name("Paseo Local Testnet") .with_id("paseo-local") .with_chain_type(ChainType::Local) .with_genesis_config_patch(paseo_local_testnet_genesis()) From 12546be1be8f9db579ad3e8d5f349786c8b60e03 Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Andres <11448715+al3mart@users.noreply.github.com> Date: Fri, 17 May 2024 18:07:25 +0200 Subject: [PATCH 2/2] fix(crates): Separate crate versions --- relay/paseo/Cargo.toml | 2 +- system-parachains/asset-hub-paseo/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/relay/paseo/Cargo.toml b/relay/paseo/Cargo.toml index e4c0352..1065829 100644 --- a/relay/paseo/Cargo.toml +++ b/relay/paseo/Cargo.toml @@ -2,7 +2,7 @@ name = "paseo-runtime" build = "build.rs" repository.workspace = true -version.workspace = true +version = "1.2.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/system-parachains/asset-hub-paseo/Cargo.toml b/system-parachains/asset-hub-paseo/Cargo.toml index 0f3b6a8..288666c 100644 --- a/system-parachains/asset-hub-paseo/Cargo.toml +++ b/system-parachains/asset-hub-paseo/Cargo.toml @@ -6,7 +6,7 @@ edition.workspace = true license.workspace = true name = "asset-hub-paseo-runtime" repository.workspace = true -version.workspace = true +version = "1.1.2" [dependencies] codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }