From 688ab87ba157c55d83d555cfbd781ff66b35ad06 Mon Sep 17 00:00:00 2001 From: kylezs Date: Wed, 20 Nov 2024 13:33:13 +0100 Subject: [PATCH] chore: bump old engine version --- engine-runner-bin/Cargo.toml | 4 ++-- engine-runner-bin/src/main.rs | 2 +- engine-upgrade-utils/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/engine-runner-bin/Cargo.toml b/engine-runner-bin/Cargo.toml index e3080252c6..e613346536 100644 --- a/engine-runner-bin/Cargo.toml +++ b/engine-runner-bin/Cargo.toml @@ -31,10 +31,10 @@ assets = [ # The old version gets put into target/release by the package github actions workflow. # It downloads the correct version from the releases page. [ - "target/release/libchainflip_engine_v1_7_0.so", + "target/release/libchainflip_engine_v1_7_1.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_0.so", + "usr/lib/chainflip-engine/libchainflip_engine_v1_7_1.so", "755", ], ] diff --git a/engine-runner-bin/src/main.rs b/engine-runner-bin/src/main.rs index 5b0fb96ad5..afdd764a94 100644 --- a/engine-runner-bin/src/main.rs +++ b/engine-runner-bin/src/main.rs @@ -2,7 +2,7 @@ use engine_upgrade_utils::{CStrArray, NEW_VERSION, OLD_VERSION}; // Declare the entrypoints into each version of the engine mod old { - #[engine_proc_macros::link_engine_library_version("1.7.0")] + #[engine_proc_macros::link_engine_library_version("1.7.1")] extern "C" { pub 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 0587a49d6a..176fe6c008 100644 --- a/engine-upgrade-utils/src/lib.rs +++ b/engine-upgrade-utils/src/lib.rs @@ -10,7 +10,7 @@ pub mod build_helpers; // rest of the places the version needs changing on build using the build scripts in each of the // relevant crates. // Should also check that the compatibility function below `args_compatible_with_old` is correct. -pub const OLD_VERSION: &str = "1.7.0"; +pub const OLD_VERSION: &str = "1.7.1"; pub const NEW_VERSION: &str = "1.8.0"; pub const ENGINE_LIB_PREFIX: &str = "chainflip_engine_v";