From 018ffc2e7379caa41aad8093331a15587c4ace07 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 24 Feb 2025 14:33:07 +0100 Subject: [PATCH] chore: version bumps --- Cargo.lock | 20 ++++++++++---------- api/bin/chainflip-broker-api/Cargo.toml | 2 +- api/bin/chainflip-cli/Cargo.toml | 2 +- api/bin/chainflip-lp-api/Cargo.toml | 2 +- api/lib/Cargo.toml | 2 +- engine-dylib/Cargo.toml | 4 ++-- engine-proc-macros/Cargo.toml | 2 +- engine-runner-bin/Cargo.toml | 6 +++--- engine-runner-bin/src/main.rs | 2 +- engine-upgrade-utils/src/lib.rs | 2 +- engine/Cargo.toml | 2 +- state-chain/node/Cargo.toml | 2 +- state-chain/runtime/Cargo.toml | 2 +- state-chain/runtime/src/lib.rs | 2 +- 14 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 669e551d15..0d8a6b4797 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1327,7 +1327,7 @@ dependencies = [ [[package]] name = "cf-engine-dylib" -version = "1.7.9" +version = "1.7.10" dependencies = [ "chainflip-engine", "engine-proc-macros", @@ -1578,7 +1578,7 @@ dependencies = [ [[package]] name = "chainflip-api" -version = "1.7.9" +version = "1.7.10" dependencies = [ "anyhow", "async-trait", @@ -1625,7 +1625,7 @@ dependencies = [ [[package]] name = "chainflip-broker-api" -version = "1.7.9" +version = "1.7.10" dependencies = [ "anyhow", "cf-chains", @@ -1649,7 +1649,7 @@ dependencies = [ [[package]] name = "chainflip-cli" -version = "1.7.9" +version = "1.7.10" dependencies = [ "anyhow", "bigdecimal", @@ -1670,7 +1670,7 @@ dependencies = [ [[package]] name = "chainflip-engine" -version = "1.7.9" +version = "1.7.10" dependencies = [ "anyhow", "async-broadcast", @@ -1807,7 +1807,7 @@ dependencies = [ [[package]] name = "chainflip-lp-api" -version = "1.7.9" +version = "1.7.10" dependencies = [ "anyhow", "cf-primitives", @@ -1834,7 +1834,7 @@ dependencies = [ [[package]] name = "chainflip-node" -version = "1.7.9" +version = "1.7.10" dependencies = [ "cf-chains", "cf-primitives", @@ -3224,7 +3224,7 @@ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d" [[package]] name = "engine-proc-macros" -version = "1.7.9" +version = "1.7.10" dependencies = [ "engine-upgrade-utils", "proc-macro2", @@ -3234,7 +3234,7 @@ dependencies = [ [[package]] name = "engine-runner" -version = "1.7.9" +version = "1.7.10" dependencies = [ "anyhow", "assert_cmd", @@ -13058,7 +13058,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "state-chain-runtime" -version = "1.7.9" +version = "1.7.10" dependencies = [ "bitvec", "cf-amm", diff --git a/api/bin/chainflip-broker-api/Cargo.toml b/api/bin/chainflip-broker-api/Cargo.toml index eaababf68d..9e132726a5 100644 --- a/api/bin/chainflip-broker-api/Cargo.toml +++ b/api/bin/chainflip-broker-api/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Chainflip team "] name = "chainflip-broker-api" -version = "1.7.9" +version = "1.7.10" edition = "2021" [package.metadata.deb] diff --git a/api/bin/chainflip-cli/Cargo.toml b/api/bin/chainflip-cli/Cargo.toml index 77f15011f0..44d541ecdc 100644 --- a/api/bin/chainflip-cli/Cargo.toml +++ b/api/bin/chainflip-cli/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Chainflip team "] edition = "2021" build = "build.rs" name = "chainflip-cli" -version = "1.7.9" +version = "1.7.10" [lints] workspace = true diff --git a/api/bin/chainflip-lp-api/Cargo.toml b/api/bin/chainflip-lp-api/Cargo.toml index 17b57c9806..2750744c38 100644 --- a/api/bin/chainflip-lp-api/Cargo.toml +++ b/api/bin/chainflip-lp-api/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Chainflip team "] name = "chainflip-lp-api" -version = "1.7.9" +version = "1.7.10" edition = "2021" [package.metadata.deb] diff --git a/api/lib/Cargo.toml b/api/lib/Cargo.toml index 56293e28dd..7fd0bbc89c 100644 --- a/api/lib/Cargo.toml +++ b/api/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "chainflip-api" -version = "1.7.9" +version = "1.7.10" edition = "2021" [lints] diff --git a/engine-dylib/Cargo.toml b/engine-dylib/Cargo.toml index cc8ecb27bd..93ba8f920a 100644 --- a/engine-dylib/Cargo.toml +++ b/engine-dylib/Cargo.toml @@ -3,11 +3,11 @@ authors = ["Chainflip team "] build = "build.rs" edition = "2021" name = "cf-engine-dylib" -version = "1.7.9" +version = "1.7.10" [lib] crate-type = ["cdylib"] -name = "chainflip_engine_v1_7_9" +name = "chainflip_engine_v1_7_10" path = "src/lib.rs" [dependencies] diff --git a/engine-proc-macros/Cargo.toml b/engine-proc-macros/Cargo.toml index a1c8730240..80a3827838 100644 --- a/engine-proc-macros/Cargo.toml +++ b/engine-proc-macros/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" name = "engine-proc-macros" # The version here is the version that will be used for the generated code, and therefore will be the # suffix of the generated engine entrypoint. TODO: Fix this. -version = "1.7.9" +version = "1.7.10" [lib] proc-macro = true diff --git a/engine-runner-bin/Cargo.toml b/engine-runner-bin/Cargo.toml index 1e04069548..5017b0dbcb 100644 --- a/engine-runner-bin/Cargo.toml +++ b/engine-runner-bin/Cargo.toml @@ -2,7 +2,7 @@ name = "engine-runner" description = "The central runner for the chainflip engine, it requires two shared library versions to run." # NB: When updating this version, you must update the debian assets appropriately too. -version = "1.7.9" +version = "1.7.10" authors = ["Chainflip team "] build = "build.rs" edition = "2021" @@ -22,10 +22,10 @@ assets = [ # to specify this. We do this in the `chainflip-engine.service` files, so the user does not need to set it # manually. [ - "target/release/libchainflip_engine_v1_7_9.so", + "target/release/libchainflip_engine_v1_7_10.so", # This is the path where the engine dylib is searched for on linux. # As set in the build.rs file. - "usr/lib/chainflip-engine/libchainflip_engine_v1_7_9.so", + "usr/lib/chainflip-engine/libchainflip_engine_v1_7_10.so", "755", ], # The old version gets put into target/release by the package github actions workflow. diff --git a/engine-runner-bin/src/main.rs b/engine-runner-bin/src/main.rs index a4c0a4746f..4f38ec9a92 100644 --- a/engine-runner-bin/src/main.rs +++ b/engine-runner-bin/src/main.rs @@ -13,7 +13,7 @@ mod old { } mod new { - #[engine_proc_macros::link_engine_library_version("1.7.9")] + #[engine_proc_macros::link_engine_library_version("1.7.10")] extern "C" { fn cfe_entrypoint( c_args: engine_upgrade_utils::CStrArray, diff --git a/engine-upgrade-utils/src/lib.rs b/engine-upgrade-utils/src/lib.rs index 8261dc462c..44a607fb99 100644 --- a/engine-upgrade-utils/src/lib.rs +++ b/engine-upgrade-utils/src/lib.rs @@ -11,7 +11,7 @@ pub mod build_helpers; // relevant crates. // Should also check that the compatibility function below `args_compatible_with_old` is correct. pub const OLD_VERSION: &str = "1.6.8"; -pub const NEW_VERSION: &str = "1.7.9"; +pub const NEW_VERSION: &str = "1.7.10"; pub const ENGINE_LIB_PREFIX: &str = "chainflip_engine_v"; pub const ENGINE_ENTRYPOINT_PREFIX: &str = "cfe_entrypoint_v"; diff --git a/engine/Cargo.toml b/engine/Cargo.toml index 47697a8a98..f3ad482d08 100644 --- a/engine/Cargo.toml +++ b/engine/Cargo.toml @@ -3,7 +3,7 @@ authors = ["Chainflip team "] build = "build.rs" edition = "2021" name = "chainflip-engine" -version = "1.7.9" +version = "1.7.10" [lib] crate-type = ["lib"] diff --git a/state-chain/node/Cargo.toml b/state-chain/node/Cargo.toml index af9901c4f1..0e7f0caa73 100644 --- a/state-chain/node/Cargo.toml +++ b/state-chain/node/Cargo.toml @@ -8,7 +8,7 @@ license = "" name = "chainflip-node" publish = false repository = "https://github.com/chainflip-io/chainflip-backend" -version = "1.7.9" +version = "1.7.10" [[bin]] name = "chainflip-node" diff --git a/state-chain/runtime/Cargo.toml b/state-chain/runtime/Cargo.toml index 88b46f8487..d80428a797 100644 --- a/state-chain/runtime/Cargo.toml +++ b/state-chain/runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "state-chain-runtime" -version = "1.7.9" +version = "1.7.10" authors = ["Chainflip Team "] edition = "2021" homepage = "https://chainflip.io" diff --git a/state-chain/runtime/src/lib.rs b/state-chain/runtime/src/lib.rs index 71989eba1f..050dde2282 100644 --- a/state-chain/runtime/src/lib.rs +++ b/state-chain/runtime/src/lib.rs @@ -209,7 +209,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: create_runtime_str!("chainflip-node"), impl_name: create_runtime_str!("chainflip-node"), authoring_version: 1, - spec_version: 179, + spec_version: 1_07_10, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 12,