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

Commit 12ba295

Browse files
author
Joe C
authored
Bump/associated token (#4633)
* bump/associated-token * adjusted dependencies for managed token * major release instead
1 parent 9cf43e8 commit 12ba295

File tree

11 files changed

+33
-33
lines changed

11 files changed

+33
-33
lines changed

Cargo.lock

Lines changed: 20 additions & 20 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
@@ -14,6 +14,6 @@ test-sbf = []
1414
solana-program = "1.16.1"
1515
solana-program-test = "1.16.1"
1616
solana-sdk = "1.16.1"
17-
spl-associated-token-account = { version = "1.1", path = "../program", features = ["no-entrypoint"] }
17+
spl-associated-token-account = { version = "2.0", path = "../program", features = ["no-entrypoint"] }
1818
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
1919
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }

associated-token-account/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-associated-token-account"
3-
version = "1.1.3"
3+
version = "2.0.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"

managed-token/program/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ default = []
2222
test = []
2323

2424
[dependencies]
25-
solana-program = "1.16.1"
25+
borsh = "0.10"
2626
shank = "^0.0.5"
27-
spl-token = { version = "3.5.0", features = ["no-entrypoint"] }
28-
spl-associated-token-account = { version = "1.1.1", features = [ "no-entrypoint", ] }
27+
solana-program = "1.16.1"
28+
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = [ "no-entrypoint", ] }
29+
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
2930
thiserror = "^1.0.40"
30-
borsh = "0.10"
3131

3232
[dev-dependencies]
3333
solana-program-test = "1.16.1"

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.1"
2323
solana-program = "=1.16.1"
2424
solana-remote-wallet = "=1.16.1"
2525
solana-sdk = "=1.16.1"
26-
spl-associated-token-account = { version = "=1.1.3", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
26+
spl-associated-token-account = { version = "=2.0", 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/single-pool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ num-traits = "0.2"
1919
num_enum = "0.6.1"
2020
solana-program = "1.16.1"
2121
spl-token = { version = "4.0", path = "../../token/program", features = [ "no-entrypoint" ] }
22-
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = [ "no-entrypoint" ] }
22+
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = [ "no-entrypoint" ] }
2323
thiserror = "1.0"
2424

2525
[dev-dependencies]

stateless-asks/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test-sbf = []
1414
borsh = "0.10"
1515
solana-program = "1.16.1"
1616
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
17-
spl-associated-token-account = {version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"]}
17+
spl-associated-token-account = {version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"]}
1818
thiserror = "1.0"
1919

2020
[dev-dependencies]

token-upgrade/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ solana-client = "1.16.1"
1919
solana-logger = "1.16.1"
2020
solana-remote-wallet = "1.16.1"
2121
solana-sdk = "1.16.1"
22-
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
22+
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"] }
2424
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }
2525
spl-token-client = { version = "0.5", path = "../../token/client" }

token/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ solana-transaction-status = "=1.16.1"
2929
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
3030
spl-token-2022 = { version = "0.7", path="../program-2022", features = [ "no-entrypoint" ] }
3131
spl-token-client = { version = "0.5", path="../client" }
32-
spl-associated-token-account = { version = "1.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
32+
spl-associated-token-account = { version = "2.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
3333
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }
3434
strum = "0.25"
3535
strum_macros = "0.25"

token/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ solana-program-test = "=1.16.1"
1616
solana-sdk = "=1.16.1"
1717
# We never want the entrypoint for ATA, but we want the entrypoint for token when
1818
# testing token
19-
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
19+
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
2020
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
2121
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
2222
spl-token-2022 = { version = "0.7", path="../program-2022" }

0 commit comments

Comments
 (0)