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

Commit 054d61c

Browse files
authored
stake-pool: Increase version for crate release, update program id (#2059)
1 parent f35ca3c commit 054d61c

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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: 2 additions & 2 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.3.0"
9+
version = "0.4.0"
1010

1111
[dependencies]
1212
borsh = "0.9"
@@ -21,7 +21,7 @@ solana-program = "=1.7.4"
2121
solana-remote-wallet = "=1.7.4"
2222
solana-sdk = "=1.7.4"
2323
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
24-
spl-stake-pool = { version = "0.3", path="../program", features = [ "no-entrypoint" ] }
24+
spl-stake-pool = { version = "0.4", path="../program", features = [ "no-entrypoint" ] }
2525
spl-token = { version = "3.1", path="../../token/program", features = [ "no-entrypoint" ] }
2626
bs58 = "0.4.0"
2727
bincode = "1.3.1"

stake-pool/cli/scripts/setup-local.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ build_program () {
2525
}
2626

2727
setup_validator() {
28-
solana-test-validator --bpf-program SPoo1XJbrC5pXDfg5NQAXo2RKyfimXKm6KpqicGvpbo ../../../target/deploy/spl_stake_pool.so --quiet --reset --slots-per-epoch 32 &
28+
solana-test-validator --bpf-program SPoo1xuN9wGpxNjGnPNbRPtpQ7mHgKM8d9BeFC549Jy ../../../target/deploy/spl_stake_pool.so --quiet --reset --slots-per-epoch 32 &
2929
pid=$!
3030
solana config set --url http://127.0.0.1:8899
3131
solana config set --commitment confirmed

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

stake-pool/program/program-id.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SPoo1XJbrC5pXDfg5NQAXo2RKyfimXKm6KpqicGvpbo
1+
SPoo1xuN9wGpxNjGnPNbRPtpQ7mHgKM8d9BeFC549Jy

stake-pool/program/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ pub fn find_transient_stake_program_address(
102102
)
103103
}
104104

105-
solana_program::declare_id!("SPoo1XJbrC5pXDfg5NQAXo2RKyfimXKm6KpqicGvpbo");
105+
solana_program::declare_id!("SPoo1xuN9wGpxNjGnPNbRPtpQ7mHgKM8d9BeFC549Jy");

0 commit comments

Comments
 (0)