From 53cf4822d8bc944ed8676ebb2dbd11b8f52bd900 Mon Sep 17 00:00:00 2001 From: Jon C Date: Wed, 26 Jun 2024 00:37:48 +0200 Subject: [PATCH] token-client: Bump to v0.11 for Solana v2 compatibility --- Cargo.lock | 2 +- single-pool/cli/Cargo.toml | 2 +- token-collection/program/Cargo.toml | 2 +- token-group/example/Cargo.toml | 2 +- token-metadata/example/Cargo.toml | 2 +- token-upgrade/cli/Cargo.toml | 2 +- token-upgrade/program/Cargo.toml | 2 +- token/cli/Cargo.toml | 2 +- token/client/Cargo.toml | 2 +- token/program-2022-test/Cargo.toml | 2 +- token/transfer-hook/cli/Cargo.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index baea863db18..f772f752f7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7624,7 +7624,7 @@ dependencies = [ [[package]] name = "spl-token-client" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-trait", "curve25519-dalek", diff --git a/single-pool/cli/Cargo.toml b/single-pool/cli/Cargo.toml index c9fe4921e33..6fdf27eef7f 100644 --- a/single-pool/cli/Cargo.toml +++ b/single-pool/cli/Cargo.toml @@ -30,7 +30,7 @@ solana-vote-program = "2.0.0" spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint", ] } -spl-token-client = { version = "0.10.0", path = "../../token/client" } +spl-token-client = { version = "0.11.0", path = "../../token/client" } spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [ "no-entrypoint", ] } diff --git a/token-collection/program/Cargo.toml b/token-collection/program/Cargo.toml index 13fb745877f..0852e561d11 100644 --- a/token-collection/program/Cargo.toml +++ b/token-collection/program/Cargo.toml @@ -25,7 +25,7 @@ spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length solana-program-test = "2.0.0" solana-sdk = "2.0.0" spl-discriminator = { version = "0.3.0", path = "../../libraries/discriminator" } -spl-token-client = { version = "0.10.0", path = "../../token/client" } +spl-token-client = { version = "0.11.0", path = "../../token/client" } [lib] crate-type = ["cdylib", "lib"] diff --git a/token-group/example/Cargo.toml b/token-group/example/Cargo.toml index 8c341a3b7f2..7d023c796dc 100644 --- a/token-group/example/Cargo.toml +++ b/token-group/example/Cargo.toml @@ -22,7 +22,7 @@ spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length solana-program-test = "2.0.0" solana-sdk = "2.0.0" spl-discriminator = { version = "0.3.0", path = "../../libraries/discriminator" } -spl-token-client = { version = "0.10.0", path = "../../token/client" } +spl-token-client = { version = "0.11.0", path = "../../token/client" } spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/interface" } [lib] diff --git a/token-metadata/example/Cargo.toml b/token-metadata/example/Cargo.toml index e1fb441410f..f6bb9c6d6a4 100644 --- a/token-metadata/example/Cargo.toml +++ b/token-metadata/example/Cargo.toml @@ -21,7 +21,7 @@ spl-pod = { version = "0.3.0", path = "../../libraries/pod" } [dev-dependencies] solana-program-test = "2.0.0" solana-sdk = "2.0.0" -spl-token-client = { version = "0.10.0", path = "../../token/client" } +spl-token-client = { version = "0.11.0", path = "../../token/client" } test-case = "3.3" [lib] diff --git a/token-upgrade/cli/Cargo.toml b/token-upgrade/cli/Cargo.toml index bfb53da6137..25f8f306834 100644 --- a/token-upgrade/cli/Cargo.toml +++ b/token-upgrade/cli/Cargo.toml @@ -22,7 +22,7 @@ solana-sdk = "2.0.0" spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = ["no-entrypoint"] } spl-token = { version = "6.0", path = "../../token/program", features = ["no-entrypoint"] } spl-token-2022 = { version = "4.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.10.0", path = "../../token/client" } +spl-token-client = { version = "0.11.0", path = "../../token/client" } spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] } tokio = { version = "1", features = ["full"] } diff --git a/token-upgrade/program/Cargo.toml b/token-upgrade/program/Cargo.toml index 727abe795c3..1b4c1f81482 100644 --- a/token-upgrade/program/Cargo.toml +++ b/token-upgrade/program/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0" solana-program-test = "2.0.0" solana-sdk = "2.0.0" spl-token = { version = "6.0", path = "../../token/program", features = ["no-entrypoint"] } -spl-token-client = { version = "0.10.0", path = "../../token/client" } +spl-token-client = { version = "0.11.0", path = "../../token/client" } test-case = "3.3" [lib] diff --git a/token/cli/Cargo.toml b/token/cli/Cargo.toml index 0de993f0e35..bbfccd205e5 100644 --- a/token/cli/Cargo.toml +++ b/token/cli/Cargo.toml @@ -34,7 +34,7 @@ spl-token = { version = "6.0", path = "../program", features = [ spl-token-2022 = { version = "4.0.0", path = "../program-2022", features = [ "no-entrypoint", ] } -spl-token-client = { version = "0.10.0", path = "../client" } +spl-token-client = { version = "0.11.0", path = "../client" } spl-token-metadata-interface = { version = "0.4.0", path = "../../token-metadata/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 = [ diff --git a/token/client/Cargo.toml b/token/client/Cargo.toml index 1c40e17f3e0..f28a489673c 100644 --- a/token/client/Cargo.toml +++ b/token/client/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "Apache-2.0" name = "spl-token-client" repository = "https://github.com/solana-labs/solana-program-library" -version = "0.10.0" +version = "0.11.0" [dependencies] async-trait = "0.1" diff --git a/token/program-2022-test/Cargo.toml b/token/program-2022-test/Cargo.toml index 43ef3e297d5..628d98dfa04 100644 --- a/token/program-2022-test/Cargo.toml +++ b/token/program-2022-test/Cargo.toml @@ -34,7 +34,7 @@ spl-instruction-padding = { version = "0.2.0", path = "../../instruction-padding "no-entrypoint", ] } spl-tlv-account-resolution = { version = "0.7.0", path = "../../libraries/tlv-account-resolution" } -spl-token-client = { version = "0.10.0", path = "../client" } +spl-token-client = { version = "0.11.0", path = "../client" } 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 = [ diff --git a/token/transfer-hook/cli/Cargo.toml b/token/transfer-hook/cli/Cargo.toml index 38b37c77eb5..e3eaaf0600d 100644 --- a/token/transfer-hook/cli/Cargo.toml +++ b/token/transfer-hook/cli/Cargo.toml @@ -29,7 +29,7 @@ serde_yaml = "0.9.34" [dev-dependencies] solana-test-validator = "2.0.0" spl-token-2022 = { version = "4.0.0", path = "../../program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.10.0", path = "../../client" } +spl-token-client = { version = "0.11.0", path = "../../client" } spl-transfer-hook-example = { version = "0.6.0", path = "../example" } [[bin]]