Skip to content

Commit

Permalink
Publish spl-token-metadata-interface v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 1, 2024
1 parent 35750a3 commit 9f8e283
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 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 @@ -18,7 +18,7 @@ spl-program-error = { version = "0.6.0", path = "../../libraries/program-error"
spl-token-2022 = { version = "5.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.5.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" }
spl-type-length-value = { version = "0.7.0", path = "../../libraries/type-length-value" }

[dev-dependencies]
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 @@ -23,7 +23,7 @@ solana-program-test = "2.1.0"
solana-sdk = "2.1.0"
spl-discriminator = { version = "0.4.0", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.12.1", path = "../../token/client" }
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
2 changes: 1 addition & 1 deletion token-metadata/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test-sbf = []
[dependencies]
solana-program = "2.1.0"
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-metadata-interface = { version = "0.5.1", path = "../interface" }
spl-token-metadata-interface = { version = "0.6.0", path = "../interface" }
spl-type-length-value = { version = "0.7.0", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }

Expand Down
2 changes: 1 addition & 1 deletion token-metadata/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-token-metadata-interface"
version = "0.5.1"
version = "0.6.0"
description = "Solana Program Library Token Metadata Interface"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
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 @@ -37,7 +37,7 @@ spl-token-2022 = { version = "5.0.2", path = "../program-2022", features = [
] }
spl-token-client = { version = "0.12.1", path = "../client" }
spl-token-confidential-transfer-proof-generation = { version = "0.1.0", path = "../confidential-transfer/proof-generation" }
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" }
spl-token-group-interface = { version = "0.5.0", path = "../../token-group/interface" }
spl-memo = { version = "6.0", path = "../../memo/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 @@ -32,7 +32,7 @@ spl-token-confidential-transfer-proof-extraction = { version = "0.1.0", path = "
spl-token-confidential-transfer-proof-generation = { version = "0.1.0", path = "../confidential-transfer/proof-generation" }
spl-token-2022 = { version = "5.0.2", path = "../program-2022" }
spl-token-group-interface = { version = "0.5.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.8.2", 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 @@ -43,7 +43,7 @@ spl-instruction-padding = { version = "0.3.0", path = "../../instruction-padding
spl-tlv-account-resolution = { version = "0.9.0", path = "../../libraries/tlv-account-resolution" }
spl-token-client = { version = "0.12.1", path = "../client" }
spl-token-group-interface = { version = "0.5.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-token-metadata-interface = { version = "0.6.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 @@ spl-token = { version = "6.0", path = "../program", features = ["no-entrypoint"
spl-token-confidential-transfer-ciphertext-arithmetic = { version = "0.1.0", path = "../confidential-transfer/ciphertext-arithmetic" }
spl-token-confidential-transfer-proof-extraction = { version = "0.1.0", path = "../confidential-transfer/proof-extraction" }
spl-token-group-interface = { version = "0.5.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-token-metadata-interface = { version = "0.6.0", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.8.2", path = "../transfer-hook/interface" }
spl-type-length-value = { version = "0.7.0", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }
Expand Down

0 comments on commit 9f8e283

Please sign in to comment.