From cd6ce4b7709d2420bca60b4656bbd3d15d2e1485 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 16:00:25 +0000 Subject: [PATCH] Publish spl-math v0.3.0 --- Cargo.lock | 2 +- libraries/math/Cargo.toml | 2 +- stake-pool/program/Cargo.toml | 2 +- token-swap/program/Cargo.toml | 2 +- token-swap/program/fuzz/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ea196d8d660..d7cc4992ec8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7206,7 +7206,7 @@ dependencies = [ [[package]] name = "spl-math" -version = "0.2.0" +version = "0.3.0" dependencies = [ "borsh 1.5.1", "libm", diff --git a/libraries/math/Cargo.toml b/libraries/math/Cargo.toml index d2ae096756b..c9a2b72e9de 100644 --- a/libraries/math/Cargo.toml +++ b/libraries/math/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spl-math" -version = "0.2.0" +version = "0.3.0" description = "Solana Program Library Math" authors = ["Solana Labs Maintainers "] repository = "https://github.com/solana-labs/solana-program-library" diff --git a/stake-pool/program/Cargo.toml b/stake-pool/program/Cargo.toml index 01bf7d581b3..b13eaf14e92 100644 --- a/stake-pool/program/Cargo.toml +++ b/stake-pool/program/Cargo.toml @@ -22,7 +22,7 @@ serde = "1.0.210" serde_derive = "1.0.103" solana-program = "2.0.3" solana-security-txt = "1.1.1" -spl-math = { version = "0.2", path = "../../libraries/math", features = [ +spl-math = { version = "0.3", path = "../../libraries/math", features = [ "no-entrypoint", ] } spl-pod = { version = "0.4.0", path = "../../libraries/pod", features = [ diff --git a/token-swap/program/Cargo.toml b/token-swap/program/Cargo.toml index 929df73e934..56867a31f5b 100644 --- a/token-swap/program/Cargo.toml +++ b/token-swap/program/Cargo.toml @@ -18,7 +18,7 @@ enum_dispatch = "0.3.13" num-derive = "0.4" num-traits = "0.2" solana-program = "2.0.3" -spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] } +spl-math = { version = "0.3", path = "../../libraries/math", features = [ "no-entrypoint" ] } spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint" ] } spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = [ "no-entrypoint" ] } thiserror = "1.0" diff --git a/token-swap/program/fuzz/Cargo.toml b/token-swap/program/fuzz/Cargo.toml index 4cb4ecdc39f..fdfbbf1214d 100644 --- a/token-swap/program/fuzz/Cargo.toml +++ b/token-swap/program/fuzz/Cargo.toml @@ -12,7 +12,7 @@ publish = false honggfuzz = { version = "0.5.56" } arbitrary = { version = "1.3", features = ["derive"] } solana-program = "2.0.3" -spl-math = { version = "0.2", path = "../../../libraries/math", features = [ "no-entrypoint" ] } +spl-math = { version = "0.3", path = "../../../libraries/math", features = [ "no-entrypoint" ] } spl-token = { version = "6.0", path = "../../../token/program", features = [ "no-entrypoint" ] } spl-token-swap = { path = "..", features = ["fuzz", "no-entrypoint"] }