bump token-cli to 2.1.1 and token-client to 0.2.1

This commit is contained in:
hanako mumei 2022-10-11 19:08:42 -07:00 committed by hana
parent 3a87c8fc0a
commit 88b147506d
5 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@ solana-sdk = "1.14.4"
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.2", path = "../../token/client" }
spl-token-client = { version = "0.2.1", path = "../../token/client" }
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
tokio = { version = "1", features = ["full"] }

View File

@ -23,7 +23,7 @@ thiserror = "1.0"
solana-program-test = "1.14.4"
solana-sdk = "1.14.4"
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-client = { version = "0.2", path = "../../token/client" }
spl-token-client = { version = "0.2.1", path = "../../token/client" }
test-case = "2.2"
[lib]

View File

@ -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 = "2.1.0"
version = "2.1.1"
[build-dependencies]
walkdir = "2"
@ -29,7 +29,7 @@ solana-sdk = "=1.14.4"
solana-transaction-status = "=1.14.4"
spl-token = { version = "3.5", path="../program", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.4", path="../program-2022", features = [ "no-entrypoint" ] }
spl-token-client = { version = "0.2", path="../client" }
spl-token-client = { version = "0.2.1", path="../client" }
spl-associated-token-account = { version = "1.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }
strum = "0.24"

View File

@ -5,7 +5,7 @@ edition = "2018"
license = "Apache-2.0"
name = "spl-token-client"
repository = "https://github.com/solana-labs/solana-program-library"
version = "0.2.0"
version = "0.2.1"
[dependencies]
async-trait = "0.1"

View File

@ -21,4 +21,4 @@ solana-sdk = "=1.14.4"
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program" }
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.4", path="../program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.2", path = "../client" }
spl-token-client = { version = "0.2.1", path = "../client" }