Skip to content

Commit

Permalink
stake-pool: Upgrade to version 1.0.0 to tag release (#5943)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque committed Dec 4, 2023
1 parent 111259f commit b7dd8fe
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
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.

4 changes: 2 additions & 2 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.7.0"
version = "1.0.0"

[dependencies]
borsh = "0.10"
Expand All @@ -24,7 +24,7 @@ solana-program = "=1.17.6"
solana-remote-wallet = "=1.17.6"
solana-sdk = "=1.17.6"
spl-associated-token-account = { version = "=2.2", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "=0.7.0", path="../program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "=1.0.0", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "=4.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/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solana/spl-stake-pool",
"version": "0.7.0",
"version": "1.0.0",
"description": "SPL Stake Pool Program JS API",
"scripts": {
"build": "tsc && cross-env NODE_ENV=production rollup -c",
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.7.0"
version = "1.0.0"
description = "Solana Program Library Stake Pool"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
4 changes: 2 additions & 2 deletions stake-pool/program/src/entrypoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ security_txt! {
// Optional Fields
preferred_languages: "en",
source_code: "https://github.com/solana-labs/solana-program-library/tree/master/stake-pool/program",
source_revision: "58c1226a513d3d8bb2de8ec67586a679be7fd2d4",
source_release: "stake-pool-v0.6.4",
source_revision: "", // fill in after v1.0.0 bump lands
source_release: "stake-pool-v1.0.0",
auditors: "https://github.com/solana-labs/security-audits#stake-pool"
}

0 comments on commit b7dd8fe

Please sign in to comment.