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

Commit 76bb0c8

Browse files
authored
token-{metadata,group,transfer-hook}-interface: Bump for Solana v2 compatibility (#6929)
* token-metadata-interface: Bump to 0.4.0 for Solana v2 * token-group-interface: Bump to v0.3.0 for Solana v2 * transfer-hook-interface: Bump to 0.7.0 * Update lockfile
1 parent 0c41401 commit 76bb0c8

File tree

13 files changed

+83
-83
lines changed

13 files changed

+83
-83
lines changed

Cargo.lock

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

token-collection/program/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
1717
spl-program-error = { version = "0.5.0" , path = "../../libraries/program-error" }
1818
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
1919
spl-token-group-example = { version = "0.2", path = "../../token-group/example", features = ["no-entrypoint"] }
20-
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
21-
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
20+
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
21+
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
2222
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }
2323

2424
[dev-dependencies]

token-group/example/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ test-sbf = []
1515
solana-program = "2.0.0"
1616
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
1717
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
18-
spl-token-group-interface = { version = "0.2.3", path = "../interface" }
18+
spl-token-group-interface = { version = "0.3.0", path = "../interface" }
1919
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }
2020

2121
[dev-dependencies]
2222
solana-program-test = "2.0.0"
2323
solana-sdk = "2.0.0"
2424
spl-discriminator = { version = "0.3.0", path = "../../libraries/discriminator" }
2525
spl-token-client = { version = "0.10.0", path = "../../token/client" }
26-
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
26+
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
2727

2828
[lib]
2929
crate-type = ["cdylib", "lib"]

token-group/interface/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-token-group-interface"
3-
version = "0.2.3"
3+
version = "0.3.0"
44
description = "Solana Program Library Token Group Interface"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

token-metadata/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test-sbf = []
1414
[dependencies]
1515
solana-program = "2.0.0"
1616
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
17-
spl-token-metadata-interface = { version = "0.3.3", path = "../interface" }
17+
spl-token-metadata-interface = { version = "0.4.0", path = "../interface" }
1818
spl-type-length-value = { version = "0.5.0" , path = "../../libraries/type-length-value" }
1919
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
2020

token-metadata/interface/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-token-metadata-interface"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
description = "Solana Program Library Token Metadata Interface"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

token/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ spl-token-2022 = { version = "3.0.2", path = "../program-2022", features = [
3535
"no-entrypoint",
3636
] }
3737
spl-token-client = { version = "0.10.0", path = "../client" }
38-
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
39-
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
38+
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
39+
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
4040
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
4141
"no-entrypoint",
4242
] }

token/client/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ spl-token = { version = "6.0", path = "../program", features = [
3030
"no-entrypoint",
3131
] }
3232
spl-token-2022 = { version = "3.0.2", path = "../program-2022" }
33-
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
34-
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
35-
spl-transfer-hook-interface = { version = "0.6.3", path = "../transfer-hook/interface" }
33+
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
34+
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
35+
spl-transfer-hook-interface = { version = "0.7.0", path = "../transfer-hook/interface" }
3636
thiserror = "1.0"
3737

3838
[features]

token/program-2022-test/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ spl-instruction-padding = { version = "0.2.0", path = "../../instruction-padding
3535
] }
3636
spl-tlv-account-resolution = { version = "0.7.0", path = "../../libraries/tlv-account-resolution" }
3737
spl-token-client = { version = "0.10.0", path = "../client" }
38-
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
39-
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
38+
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
39+
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
4040
spl-transfer-hook-example = { version = "0.6", path = "../transfer-hook/example", features = [
4141
"no-entrypoint",
4242
] }
43-
spl-transfer-hook-interface = { version = "0.6.3", path = "../transfer-hook/interface" }
43+
spl-transfer-hook-interface = { version = "0.7.0", path = "../transfer-hook/interface" }
4444
test-case = "3.3"

token/program-2022/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ solana-security-txt = "1.1.1"
3131
solana-zk-token-sdk = "2.0.0"
3232
spl-memo = { version = "5.0", path = "../../memo/program", features = [ "no-entrypoint" ] }
3333
spl-token = { version = "6.0", path = "../program", features = ["no-entrypoint"] }
34-
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
35-
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
36-
spl-transfer-hook-interface = { version = "0.6.3", path = "../transfer-hook/interface" }
34+
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
35+
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
36+
spl-transfer-hook-interface = { version = "0.7.0", path = "../transfer-hook/interface" }
3737
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }
3838
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
3939
thiserror = "1.0"

0 commit comments

Comments
 (0)