From d32da0dff80be75e627de3d48466ee5b8835d6a9 Mon Sep 17 00:00:00 2001 From: Jon Cinque Date: Sun, 29 Oct 2023 22:09:42 +0100 Subject: [PATCH] token-cli{,ent}: Bump version for release (#5689) --- Cargo.lock | 4 ++-- single-pool/cli/Cargo.toml | 2 +- token-collection/program/Cargo.toml | 4 ++-- token-group/example/Cargo.toml | 4 ++-- token-metadata/example/Cargo.toml | 2 +- token-upgrade/cli/Cargo.toml | 2 +- token-upgrade/program/Cargo.toml | 2 +- token/cli/Cargo.toml | 4 ++-- token/client/Cargo.toml | 2 +- token/program-2022-test/Cargo.toml | 2 +- token/transfer-hook/cli/Cargo.toml | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d773ad0bf99..b6a7649feeb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7285,7 +7285,7 @@ dependencies = [ [[package]] name = "spl-token-cli" -version = "3.2.0" +version = "3.3.0" dependencies = [ "assert_cmd", "base64 0.21.5", @@ -7321,7 +7321,7 @@ dependencies = [ [[package]] name = "spl-token-client" -version = "0.7.1" +version = "0.8.0" dependencies = [ "async-trait", "curve25519-dalek", diff --git a/single-pool/cli/Cargo.toml b/single-pool/cli/Cargo.toml index 4f7cf74e980..71d5efdf4f7 100644 --- a/single-pool/cli/Cargo.toml +++ b/single-pool/cli/Cargo.toml @@ -28,7 +28,7 @@ solana-sdk = "=1.17.2" solana-transaction-status = "=1.17.2" solana-vote-program = "=1.17.2" spl-token = { version = "4.0", path="../../token/program", features = [ "no-entrypoint" ] } -spl-token-client = { version = "0.7", path="../../token/client" } +spl-token-client = { version = "0.8", path="../../token/client" } spl-associated-token-account = { version = "2.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] } spl-single-pool = { version = "1.0.0", path="../program", features = [ "no-entrypoint" ] } diff --git a/token-collection/program/Cargo.toml b/token-collection/program/Cargo.toml index 33f2c54ee81..17dc059c9f8 100644 --- a/token-collection/program/Cargo.toml +++ b/token-collection/program/Cargo.toml @@ -25,10 +25,10 @@ spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length solana-program-test = "1.17.2" solana-sdk = "1.17.2" spl-discriminator = { version = "0.1.0", path = "../../libraries/discriminator" } -spl-token-client = { version = "0.7", path = "../../token/client" } +spl-token-client = { version = "0.8", path = "../../token/client" } [lib] crate-type = ["cdylib", "lib"] [package.metadata.docs.rs] -targets = ["x86_64-unknown-linux-gnu"] \ No newline at end of file +targets = ["x86_64-unknown-linux-gnu"] diff --git a/token-group/example/Cargo.toml b/token-group/example/Cargo.toml index a1c1849ed06..e970c2d0bcc 100644 --- a/token-group/example/Cargo.toml +++ b/token-group/example/Cargo.toml @@ -22,11 +22,11 @@ spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length solana-program-test = "1.17.2" solana-sdk = "1.17.2" spl-discriminator = { version = "0.1.0", path = "../../libraries/discriminator" } -spl-token-client = { version = "0.7", path = "../../token/client" } +spl-token-client = { version = "0.8", path = "../../token/client" } spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" } [lib] crate-type = ["cdylib", "lib"] [package.metadata.docs.rs] -targets = ["x86_64-unknown-linux-gnu"] \ No newline at end of file +targets = ["x86_64-unknown-linux-gnu"] diff --git a/token-metadata/example/Cargo.toml b/token-metadata/example/Cargo.toml index 429eb40ac34..acc64649bec 100644 --- a/token-metadata/example/Cargo.toml +++ b/token-metadata/example/Cargo.toml @@ -21,7 +21,7 @@ spl-pod = { version = "0.1.0", path = "../../libraries/pod" } [dev-dependencies] solana-program-test = "1.17.2" solana-sdk = "1.17.2" -spl-token-client = { version = "0.7", path = "../../token/client" } +spl-token-client = { version = "0.8", path = "../../token/client" } test-case = "3.2" [lib] diff --git a/token-upgrade/cli/Cargo.toml b/token-upgrade/cli/Cargo.toml index 3f326f391b9..64e3edc165d 100644 --- a/token-upgrade/cli/Cargo.toml +++ b/token-upgrade/cli/Cargo.toml @@ -22,7 +22,7 @@ solana-sdk = "1.17.2" spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] } spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] } spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.7", path = "../../token/client" } +spl-token-client = { version = "0.8", 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 7c8f3d366fa..315bbe4033a 100644 --- a/token-upgrade/program/Cargo.toml +++ b/token-upgrade/program/Cargo.toml @@ -23,7 +23,7 @@ thiserror = "1.0" solana-program-test = "1.17.2" solana-sdk = "1.17.2" spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] } -spl-token-client = { version = "0.7", path = "../../token/client" } +spl-token-client = { version = "0.8", path = "../../token/client" } test-case = "3.2" [lib] diff --git a/token/cli/Cargo.toml b/token/cli/Cargo.toml index 9a87eba34dd..62c485ee04c 100644 --- a/token/cli/Cargo.toml +++ b/token/cli/Cargo.toml @@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/token" license = "Apache-2.0" name = "spl-token-cli" repository = "https://github.com/solana-labs/solana-program-library" -version = "3.2.0" +version = "3.3.0" [build-dependencies] walkdir = "2" @@ -34,7 +34,7 @@ spl-token = { version = "4.0", path = "../program", features = [ spl-token-2022 = { version = "0.9", path = "../program-2022", features = [ "no-entrypoint", ] } -spl-token-client = { version = "0.7", path = "../client" } +spl-token-client = { version = "0.8", path = "../client" } spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" } spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = [ "no-entrypoint", diff --git a/token/client/Cargo.toml b/token/client/Cargo.toml index 9544e25e6d6..3d8975a582e 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.7.1" +version = "0.8.0" [dependencies] async-trait = "0.1" diff --git a/token/program-2022-test/Cargo.toml b/token/program-2022-test/Cargo.toml index 3ecd10c686c..ec702843feb 100644 --- a/token/program-2022-test/Cargo.toml +++ b/token/program-2022-test/Cargo.toml @@ -28,7 +28,7 @@ spl-memo = { version = "4.0.0", path = "../../memo/program", features = ["no-ent spl-pod = { version = "0.1.0", path = "../../libraries/pod" } spl-token-2022 = { version = "0.9", path="../program-2022", features = ["no-entrypoint"] } spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/program", features = ["no-entrypoint"] } -spl-token-client = { version = "0.7", path = "../client" } +spl-token-client = { version = "0.8", path = "../client" } spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" } spl-transfer-hook-example = { version = "0.3", path="../transfer-hook/example", features = ["no-entrypoint"] } spl-transfer-hook-interface = { version = "0.3", path="../transfer-hook/interface" } diff --git a/token/transfer-hook/cli/Cargo.toml b/token/transfer-hook/cli/Cargo.toml index b9f155024c7..7bb6efd4fd5 100644 --- a/token/transfer-hook/cli/Cargo.toml +++ b/token/transfer-hook/cli/Cargo.toml @@ -26,7 +26,7 @@ tokio = { version = "1", features = ["full"] } [dev-dependencies] solana-test-validator = "=1.17.2" spl-token-2022 = { version = "0.9", path = "../../program-2022", features = ["no-entrypoint"] } -spl-token-client = { version = "0.7", path = "../../client" } +spl-token-client = { version = "0.8", path = "../../client" } [[bin]] name = "spl-transfer-hook"