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

Commit b7dd8fe

Browse files
authored
stake-pool: Upgrade to version 1.0.0 to tag release (#5943)
1 parent 111259f commit b7dd8fe

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stake-pool/cli/Cargo.toml

+2-2
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.7.0"
9+
version = "1.0.0"
1010

1111
[dependencies]
1212
borsh = "0.10"
@@ -24,7 +24,7 @@ solana-program = "=1.17.6"
2424
solana-remote-wallet = "=1.17.6"
2525
solana-sdk = "=1.17.6"
2626
spl-associated-token-account = { version = "=2.2", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
27-
spl-stake-pool = { version = "=0.7.0", path="../program", features = [ "no-entrypoint" ] }
27+
spl-stake-pool = { version = "=1.0.0", path="../program", features = [ "no-entrypoint" ] }
2828
spl-token = { version = "=4.0", path="../../token/program", features = [ "no-entrypoint" ] }
2929
bs58 = "0.4.0"
3030
bincode = "1.3.1"

stake-pool/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@solana/spl-stake-pool",
3-
"version": "0.7.0",
3+
"version": "1.0.0",
44
"description": "SPL Stake Pool Program JS API",
55
"scripts": {
66
"build": "tsc && cross-env NODE_ENV=production rollup -c",

stake-pool/program/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-stake-pool"
3-
version = "0.7.0"
3+
version = "1.0.0"
44
description = "Solana Program Library Stake Pool"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

stake-pool/program/src/entrypoint.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ security_txt! {
3636
// Optional Fields
3737
preferred_languages: "en",
3838
source_code: "https://github.com/solana-labs/solana-program-library/tree/master/stake-pool/program",
39-
source_revision: "58c1226a513d3d8bb2de8ec67586a679be7fd2d4",
40-
source_release: "stake-pool-v0.6.4",
39+
source_revision: "", // fill in after v1.0.0 bump lands
40+
source_release: "stake-pool-v1.0.0",
4141
auditors: "https://github.com/solana-labs/security-audits#stake-pool"
4242
}

0 commit comments

Comments
 (0)