Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 28ef736

Browse files
author
Joe C
authored
bump/math (#4611)
1 parent ce92702 commit 28ef736

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libraries/math/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-math"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Solana Program Library Math"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

stake-pool/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ num_enum = "0.6.1"
2020
serde = "1.0.164"
2121
serde_derive = "1.0.103"
2222
solana-program = "1.16.1"
23-
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
23+
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
2424
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2525
thiserror = "1.0"
2626
bincode = "1.3.1"

token-swap/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ enum_dispatch = "0.3.11"
1818
num-derive = "0.3"
1919
num-traits = "0.2"
2020
solana-program = "1.16.1"
21-
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
21+
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
2222
spl-token = { version = "3.5", path = "../../token/program", features = [ "no-entrypoint" ] }
2323
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2424
thiserror = "1.0"

token-swap/program/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ publish = false
1212
honggfuzz = { version = "0.5.55" }
1313
arbitrary = { version = "1.0", features = ["derive"] }
1414
solana-program = "1.16.1"
15-
spl-math = { version = "0.1", path = "../../../libraries/math", features = [ "no-entrypoint" ] }
15+
spl-math = { version = "0.2", path = "../../../libraries/math", features = [ "no-entrypoint" ] }
1616
spl-token = { version = "3.5", path = "../../../token/program", features = [ "no-entrypoint" ] }
1717
spl-token-swap = { path = "..", features = ["fuzz", "no-entrypoint"] }
1818

0 commit comments

Comments
 (0)