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

Commit 58c1226

Browse files
authored
stake-pool: Bump version, add to Anchor (#2921)
1 parent 1411d8b commit 58c1226

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

Anchor.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@ anchor_version = "0.20.1"
22
solana_version = "1.9.5"
33

44
[workspace]
5-
members = ["governance/program"]
5+
members = [
6+
"governance/program",
7+
"stake-pool/program",
8+
]
69

710
[provider]
811
cluster = "mainnet"
912
wallet = "~/.config/solana/id.json"
1013

1114
[programs.mainnet]
1215
spl_governance = "GovER5Lthms3bLBqWub97yVrMmEogzX7xNjdXpPPCVZw"
16+
spl_stake_pool = "SPoo1Ku8WFXoNDMHPsrGSTSG1Y47rzgn41SLUNakuHy"

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stake-pool/cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/stake-pool"
66
license = "Apache-2.0"
77
name = "spl-stake-pool-cli"
88
repository = "https://github.com/solana-labs/solana-program-library"
9-
version = "0.6.3"
9+
version = "0.6.4"
1010

1111
[dependencies]
1212
borsh = "0.9"
@@ -17,15 +17,15 @@ serde_json = "1.0.68"
1717
solana-account-decoder = "=1.9.5"
1818
solana-clap-utils = "=1.9.5"
1919
solana-cli-config = "=1.9.5"
20-
solana-cli-output = "1.9.5"
20+
solana-cli-output = "=1.9.5"
2121
solana-client = "=1.9.5"
2222
solana-logger = "=1.9.5"
2323
solana-program = "=1.9.5"
2424
solana-remote-wallet = "=1.9.5"
2525
solana-sdk = "=1.9.5"
26-
spl-associated-token-account = { version = "1.0.5", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
27-
spl-stake-pool = { version = "0.6", path="../program", features = [ "no-entrypoint" ] }
28-
spl-token = { version = "3.3", path="../../token/program", features = [ "no-entrypoint" ] }
26+
spl-associated-token-account = { version = "=1.0.5", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
27+
spl-stake-pool = { version = "=0.6.4", path="../program", features = [ "no-entrypoint" ] }
28+
spl-token = { version = "=3.3.0", path="../../token/program", features = [ "no-entrypoint" ] }
2929
bs58 = "0.4.0"
3030
bincode = "1.3.1"
3131

stake-pool/program/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-stake-pool"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
description = "Solana Program Library Stake Pool"
55
authors = ["Solana Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

0 commit comments

Comments
 (0)