Skip to content

Commit

Permalink
token-group-interface: Bump to v0.3.0 for Solana v2
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque committed Jun 25, 2024
1 parent 628e7f8 commit 1cea8f7
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 26 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion token-collection/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
spl-program-error = { version = "0.5.0" , path = "../../libraries/program-error" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-example = { version = "0.2", path = "../../token-group/example", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }

Expand Down
2 changes: 1 addition & 1 deletion token-group/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test-sbf = []
solana-program = "2.0.0"
spl-pod = { version = "0.3.0", path = "../../libraries/pod" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2.3", path = "../interface" }
spl-token-group-interface = { version = "0.3.0", path = "../interface" }
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion token-group/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-token-group-interface"
version = "0.2.3"
version = "0.3.0"
description = "Solana Program Library Token Group Interface"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
2 changes: 1 addition & 1 deletion token/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spl-token-2022 = { version = "3.0.2", path = "../program-2022", features = [
] }
spl-token-client = { version = "0.10.0", path = "../client" }
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
Expand Down
2 changes: 1 addition & 1 deletion token/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ spl-token = { version = "6.0", path = "../program", features = [
"no-entrypoint",
] }
spl-token-2022 = { version = "3.0.2", path = "../program-2022" }
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.6.3", path = "../transfer-hook/interface" }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion token/program-2022-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ spl-instruction-padding = { version = "0.2.0", path = "../../instruction-padding
] }
spl-tlv-account-resolution = { version = "0.6.3", path = "../../libraries/tlv-account-resolution" }
spl-token-client = { version = "0.10.0", path = "../client" }
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
spl-transfer-hook-example = { version = "0.6", path = "../transfer-hook/example", features = [
"no-entrypoint",
Expand Down
2 changes: 1 addition & 1 deletion token/program-2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ solana-security-txt = "1.1.1"
solana-zk-token-sdk = "2.0.0"
spl-memo = { version = "5.0", path = "../../memo/program", features = [ "no-entrypoint" ] }
spl-token = { version = "6.0", path = "../program", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
spl-token-group-interface = { version = "0.3.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.6.3", path = "../transfer-hook/interface" }
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }
Expand Down

0 comments on commit 1cea8f7

Please sign in to comment.