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

Commit a08ec50

Browse files
author
Joe C
authored
bump/token-2022 (#4623)
* bump/token-2022 * bump/token-2022 - 0.7
1 parent 509955c commit a08ec50

File tree

13 files changed

+47
-47
lines changed

13 files changed

+47
-47
lines changed

Cargo.lock

Lines changed: 35 additions & 35 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.1"
1616
solana-sdk = "1.16.1"
1717
spl-associated-token-account = { version = "1.1", path = "../program", features = ["no-entrypoint"] }
1818
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
19-
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
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
@@ -18,7 +18,7 @@ num-derive = "0.3"
1818
num-traits = "0.2"
1919
solana-program = "1.16.1"
2020
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
21-
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
21+
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }
2222
thiserror = "1.0"
2323

2424
[lib]

stake-pool/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ serde = "1.0.164"
2121
serde_derive = "1.0.103"
2222
solana-program = "1.16.1"
2323
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
24-
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
24+
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2525
thiserror = "1.0"
2626
bincode = "1.3.1"
2727

token-metadata/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test-sbf = []
1313

1414
[dependencies]
1515
solana-program = "1.16.1"
16-
spl-token-2022 = { version = "0.6.0", path = "../../token/program-2022" }
16+
spl-token-2022 = { version = "0.7", path = "../../token/program-2022" }
1717
spl-token-metadata-interface = { version = "0.1.0", path = "../interface" }
1818
spl-type-length-value = { version = "0.2.0" , path = "../../libraries/type-length-value", features = ["borsh"] }
1919

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.1"
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.6", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
23+
spl-token-2022 = { version = "0.7", 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ solana-remote-wallet = "1.16.1"
2121
solana-sdk = "1.16.1"
2222
spl-associated-token-account = { version = "1.1", 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.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
24+
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }
2525
spl-token-client = { version = "0.5", path = "../../token/client" }
2626
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
2727
tokio = { version = "1", features = ["full"] }

token-upgrade/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ num-derive = "0.3"
1616
num-traits = "0.2"
1717
num_enum = "0.6.1"
1818
solana-program = "1.16.1"
19-
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }
2020
thiserror = "1.0"
2121

2222
[dev-dependencies]

token/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ solana-remote-wallet = "=1.16.1"
2727
solana-sdk = "=1.16.1"
2828
solana-transaction-status = "=1.16.1"
2929
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
30-
spl-token-2022 = { version = "0.6", path="../program-2022", features = [ "no-entrypoint" ] }
30+
spl-token-2022 = { version = "0.7", path="../program-2022", features = [ "no-entrypoint" ] }
3131
spl-token-client = { version = "0.5", path="../client" }
3232
spl-associated-token-account = { version = "1.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
3333
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }

token/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ solana-sdk = "=1.16.1"
1919
spl-associated-token-account = { version = "1.1", 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" ] }
22-
spl-token-2022 = { version = "0.6", path="../program-2022" }
22+
spl-token-2022 = { version = "0.7", path="../program-2022" }
2323
spl-transfer-hook-interface = { version = "0.1", path="../transfer-hook-interface" }
2424
thiserror = "1.0"
2525

0 commit comments

Comments
 (0)