From 38706cec5cd6625a707d76e8616befbb53980275 Mon Sep 17 00:00:00 2001 From: 1xstj <106580853+1xstj@users.noreply.github.com> Date: Fri, 11 Oct 2024 01:26:47 +0400 Subject: [PATCH] chore : bump version to 1.2.0 (#789) * add new function to balances precompile * chore : bump version to 1.2.0 * fix merge * fix merge --- Cargo.toml | 2 +- runtime/mainnet/src/lib.rs | 2 +- runtime/testnet/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7d24bb7b..a6380cd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "2.0.0" +version = "1.2.0" authors = ["Webb Technologies Inc."] edition = "2021" license = "Unlicense" diff --git a/runtime/mainnet/src/lib.rs b/runtime/mainnet/src/lib.rs index a5894ec9..c7ca8ae2 100644 --- a/runtime/mainnet/src/lib.rs +++ b/runtime/mainnet/src/lib.rs @@ -163,7 +163,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle"), impl_name: create_runtime_str!("tangle"), authoring_version: 1, - spec_version: 2000, // v2.0.0 + spec_version: 1200, // v1.2.0 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1, diff --git a/runtime/testnet/src/lib.rs b/runtime/testnet/src/lib.rs index b663df94..5985cb49 100644 --- a/runtime/testnet/src/lib.rs +++ b/runtime/testnet/src/lib.rs @@ -173,7 +173,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("tangle-testnet"), impl_name: create_runtime_str!("tangle-testnet"), authoring_version: 1, - spec_version: 2000, // v2.0.0 + spec_version: 1200, // v1.2.0 impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,