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

Commit dd372fd

Browse files
authored
release: Bump tlv-account-resolution and dependents (#5367)
1 parent b26bae9 commit dd372fd

File tree

18 files changed

+61
-61
lines changed

18 files changed

+61
-61
lines changed

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

associated-token-account/program-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ solana-program-test = "1.16.13"
1616
solana-sdk = "1.16.13"
1717
spl-associated-token-account = { version = "2", path = "../program", features = ["no-entrypoint"] }
1818
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
19-
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }

associated-token-account/program/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-associated-token-account"
3-
version = "2.1.0"
3+
version = "2.2.0"
44
description = "Solana Program Library Associated Token Account"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -18,7 +18,7 @@ num-derive = "0.4"
1818
num-traits = "0.2"
1919
solana-program = "1.16.13"
2020
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
21-
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
21+
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
2222
thiserror = "1.0"
2323

2424
[lib]

libraries/tlv-account-resolution/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-tlv-account-resolution"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Solana Program Library TLV Account Resolution Interface"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

single-pool/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ solana-sdk = "=1.16.13"
2828
solana-transaction-status = "=1.16.13"
2929
solana-vote-program = "=1.16.13"
3030
spl-token = { version = "4.0", path="../../token/program", features = [ "no-entrypoint" ] }
31-
spl-token-client = { version = "0.6", path="../../token/client" }
31+
spl-token-client = { version = "0.7", path="../../token/client" }
3232
spl-associated-token-account = { version = "2.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
3333
spl-single-validator-pool = { version = "1.0.0", path="../program", features = [ "no-entrypoint" ] }
3434

stake-pool/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ solana-logger = "=1.16.13"
2323
solana-program = "=1.16.13"
2424
solana-remote-wallet = "=1.16.13"
2525
solana-sdk = "=1.16.13"
26-
spl-associated-token-account = { version = "=2.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
26+
spl-associated-token-account = { version = "=2.2", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
2727
spl-stake-pool = { version = "=0.7.0", path="../program", features = [ "no-entrypoint" ] }
2828
spl-token = { version = "=4.0", path="../../token/program", features = [ "no-entrypoint" ] }
2929
bs58 = "0.4.0"

stake-pool/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde_derive = "1.0.103"
2323
solana-program = "1.16.13"
2424
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
2525
spl-pod = { version = "0.1", path = "../../libraries/pod", features = ["borsh"] }
26-
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
26+
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2727
thiserror = "1.0"
2828
bincode = "1.3.1"
2929

token-metadata/example/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ test-sbf = []
1313

1414
[dependencies]
1515
solana-program = "1.16.13"
16-
spl-token-2022 = { version = "0.8", path = "../../token/program-2022" }
16+
spl-token-2022 = { version = "0.9", path = "../../token/program-2022" }
1717
spl-token-metadata-interface = { version = "0.2.0", path = "../interface" }
1818
spl-type-length-value = { version = "0.3.0" , path = "../../libraries/type-length-value" }
1919
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
2020

2121
[dev-dependencies]
2222
solana-program-test = "1.16.13"
2323
solana-sdk = "1.16.13"
24-
spl-token-client = { version = "0.6", path = "../../token/client" }
24+
spl-token-client = { version = "0.7", path = "../../token/client" }
2525
test-case = "3.2"
2626

2727
[lib]

token-swap/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ num-traits = "0.2"
2020
solana-program = "1.16.13"
2121
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
2222
spl-token = { version = "4.0", path = "../../token/program", features = [ "no-entrypoint" ] }
23-
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
23+
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2424
thiserror = "1.0"
2525
arbitrary = { version = "1.0", features = ["derive"], optional = true }
2626
roots = { version = "0.0.8", optional = true }

token-upgrade/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ solana-remote-wallet = "1.16.13"
2121
solana-sdk = "1.16.13"
2222
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
2323
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
24-
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
25-
spl-token-client = { version = "0.6", path = "../../token/client" }
24+
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
25+
spl-token-client = { version = "0.7", path = "../../token/client" }
2626
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
2727
tokio = { version = "1", features = ["full"] }
2828

0 commit comments

Comments
 (0)