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

Commit ebc6db8

Browse files
committed
token-group-interface: Bump to 0.2.0
1 parent a244134 commit ebc6db8

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 7 additions & 7 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spl-pod = { version = "0.2", path = "../../libraries/pod" }
1717
spl-program-error = { version = "0.3.1" , path = "../../libraries/program-error" }
1818
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
1919
spl-token-group-example = { version = "0.1.0", path = "../../token-group/example", features = ["no-entrypoint"] }
20-
spl-token-group-interface = { version = "0.1.1", path = "../../token-group/interface" }
20+
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
2121
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
2222
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }
2323

token-group/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test-sbf = []
1515
solana-program = ">=1.18.2,<=2"
1616
spl-pod = { version = "0.2", path = "../../libraries/pod" }
1717
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
18-
spl-token-group-interface = { version = "0.1.1", path = "../interface" }
18+
spl-token-group-interface = { version = "0.2", path = "../interface" }
1919
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }
2020

2121
[dev-dependencies]

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.1.1"
3+
version = "0.2.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/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spl-token-2022 = { version = "3.0", path = "../program-2022", features = [
3636
] }
3737
spl-token-client = { version = "0.8", path = "../client" }
3838
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
39-
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
39+
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
4040
spl-associated-token-account = { version = "3.0", path = "../../associated-token-account/program", features = [
4141
"no-entrypoint",
4242
] }

token/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ spl-token = { version = "4.0", path = "../program", features = [
3030
"no-entrypoint",
3131
] }
3232
spl-token-2022 = { version = "3.0", path = "../program-2022" }
33-
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
33+
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
3434
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
3535
spl-transfer-hook-interface = { version = "0.5", path = "../transfer-hook/interface" }
3636
thiserror = "1.0"

token/program-2022-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spl-instruction-padding = { version = "0.1.1", path = "../../instruction-padding
3535
] }
3636
spl-tlv-account-resolution = { version = "0.6", path = "../../libraries/tlv-account-resolution" }
3737
spl-token-client = { version = "0.8", path = "../client" }
38-
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
38+
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
3939
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
4040
spl-transfer-hook-example = { version = "0.5", path = "../transfer-hook/example", features = [
4141
"no-entrypoint",

token/program-2022/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ solana-security-txt = "1.1.1"
3131
solana-zk-token-sdk = ">=1.18.2,<=2"
3232
spl-memo = { version = "4.0", path = "../../memo/program", features = [ "no-entrypoint" ] }
3333
spl-token = { version = "4.0", path = "../program", features = ["no-entrypoint"] }
34-
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
34+
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
3535
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
3636
spl-transfer-hook-interface = { version = "0.5.1", path = "../transfer-hook/interface" }
3737
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }

0 commit comments

Comments
 (0)