stake-pool: Bump versions and update id for deployment (#2384)

This commit is contained in:
Jon Cinque 2021-09-08 13:00:32 +02:00 committed by GitHub
parent df65094507
commit 562fd6d97f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 8 deletions

4
Cargo.lock generated
View File

@ -3736,7 +3736,7 @@ dependencies = [
[[package]]
name = "spl-stake-pool"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"arrayref",
"bincode",
@ -3758,7 +3758,7 @@ dependencies = [
[[package]]
name = "spl-stake-pool-cli"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"bincode",
"borsh",

View File

@ -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.4.0"
version = "0.5.0"
[dependencies]
borsh = "0.9"
@ -21,7 +21,7 @@ solana-program = "=1.7.11"
solana-remote-wallet = "=1.7.11"
solana-sdk = "=1.7.11"
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "0.4", path="../program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "0.5", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path="../../token/program", features = [ "no-entrypoint" ] }
bs58 = "0.4.0"
bincode = "1.3.1"

View File

@ -25,7 +25,7 @@ build_program () {
}
setup_validator() {
solana-test-validator --bpf-program SPoo1xuN9wGpxNjGnPNbRPtpQ7mHgKM8d9BeFC549Jy ../../../target/deploy/spl_stake_pool.so --quiet --reset --slots-per-epoch 32 &
solana-test-validator --bpf-program SPoo1Ku8WFXoNDMHPsrGSTSG1Y47rzgn41SLUNakuHy ../../../target/deploy/spl_stake_pool.so --quiet --reset --slots-per-epoch 32 &
pid=$!
solana config set --url http://127.0.0.1:8899
solana config set --commitment confirmed

View File

@ -1,6 +1,6 @@
[package]
name = "spl-stake-pool"
version = "0.4.0"
version = "0.5.0"
description = "Solana Program Library Stake Pool"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"

View File

@ -1 +1 @@
SPoo1xuN9wGpxNjGnPNbRPtpQ7mHgKM8d9BeFC549Jy
SPoo1Ku8WFXoNDMHPsrGSTSG1Y47rzgn41SLUNakuHy

View File

@ -123,4 +123,4 @@ pub fn find_transient_stake_program_address(
)
}
solana_program::declare_id!("SPoo1xuN9wGpxNjGnPNbRPtpQ7mHgKM8d9BeFC549Jy");
solana_program::declare_id!("SPoo1Ku8WFXoNDMHPsrGSTSG1Y47rzgn41SLUNakuHy");