Skip to content

Commit

Permalink
stake-pool: Bump version, add to Anchor (#2921)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque authored Feb 16, 2022
1 parent 1411d8b commit 58c1226
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion Anchor.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ anchor_version = "0.20.1"
solana_version = "1.9.5"

[workspace]
members = ["governance/program"]
members = [
"governance/program",
"stake-pool/program",
]

[provider]
cluster = "mainnet"
wallet = "~/.config/solana/id.json"

[programs.mainnet]
spl_governance = "GovER5Lthms3bLBqWub97yVrMmEogzX7xNjdXpPPCVZw"
spl_stake_pool = "SPoo1Ku8WFXoNDMHPsrGSTSG1Y47rzgn41SLUNakuHy"
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions stake-pool/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/stake-pool"
license = "Apache-2.0"
name = "spl-stake-pool-cli"
repository = "https://github.com/solana-labs/solana-program-library"
version = "0.6.3"
version = "0.6.4"

[dependencies]
borsh = "0.9"
Expand All @@ -17,15 +17,15 @@ serde_json = "1.0.68"
solana-account-decoder = "=1.9.5"
solana-clap-utils = "=1.9.5"
solana-cli-config = "=1.9.5"
solana-cli-output = "1.9.5"
solana-cli-output = "=1.9.5"
solana-client = "=1.9.5"
solana-logger = "=1.9.5"
solana-program = "=1.9.5"
solana-remote-wallet = "=1.9.5"
solana-sdk = "=1.9.5"
spl-associated-token-account = { version = "1.0.5", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "0.6", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.3", path="../../token/program", features = [ "no-entrypoint" ] }
spl-associated-token-account = { version = "=1.0.5", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "=0.6.4", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "=3.3.0", path="../../token/program", features = [ "no-entrypoint" ] }
bs58 = "0.4.0"
bincode = "1.3.1"

Expand Down
2 changes: 1 addition & 1 deletion stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-stake-pool"
version = "0.6.3"
version = "0.6.4"
description = "Solana Program Library Stake Pool"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down

0 comments on commit 58c1226

Please sign in to comment.