Skip to content

Commit

Permalink
Publish spl-associated-token-account-client v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 1, 2024
1 parent 9f8e283 commit 72bb80d
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion 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 associated-token-account/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-associated-token-account-client"
version = "1.0.0"
version = "2.0.0"
description = "Solana Program Library Associated Token Account Client"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
2 changes: 1 addition & 1 deletion associated-token-account/program-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ solana-program = "2.1.0"
solana-program-test = "2.1.0"
solana-sdk = "2.1.0"
spl-associated-token-account = { version = "5.0.1", path = "../program", features = ["no-entrypoint"] }
spl-associated-token-account-client = { version = "1.0.0", path = "../client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../client" }
spl-token = { version = "6.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
2 changes: 1 addition & 1 deletion associated-token-account/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ borsh = "1.5.1"
num-derive = "0.4"
num-traits = "0.2"
solana-program = "2.1.0"
spl-associated-token-account-client = { version = "1.0.0", path = "../client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../client" }
spl-token = { version = "6.0", path = "../../token/program", features = [
"no-entrypoint",
] }
Expand Down
2 changes: 1 addition & 1 deletion managed-token/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ solana-program = "2.1.0"
spl-associated-token-account = { version = "5.0.1", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" }
spl-token = { version = "6.0", path = "../../token/program", features = [
"no-entrypoint",
] }
Expand Down
2 changes: 1 addition & 1 deletion single-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ solana-vote-program = "2.1.0"
spl-associated-token-account = { version = "5.0.1", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" }
test-case = "3.3"
bincode = "1.3.1"
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion stake-pool/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ solana-sdk = "2.1.0"
spl-associated-token-account = { version = "=5.0.1", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-associated-token-account-client = { version = "=1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "=2.0.0", path = "../../associated-token-account/client" }
spl-stake-pool = { version = "=2.0.0", path = "../program", features = [
"no-entrypoint",
] }
Expand Down
2 changes: 1 addition & 1 deletion stateless-asks/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ solana-program = "2.1.0"
spl-token = { version = "6.0", path = "../../token/program", features = [
"no-entrypoint",
] }
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" }
thiserror = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion token-upgrade/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ solana-client = "2.1.0"
solana-logger = "2.1.0"
solana-remote-wallet = "2.1.0"
solana-sdk = "2.1.0"
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" }
spl-token = { version = "6.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.12.1", path = "../../token/client" }
Expand Down
2 changes: 1 addition & 1 deletion token/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ solana-logger = "2.1.0"
solana-remote-wallet = "2.1.0"
solana-sdk = "2.1.0"
solana-transaction-status = "2.1.0"
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" }
spl-token = { version = "6.0", path = "../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 @@ -19,7 +19,7 @@ solana-program-test = "2.1.0"
solana-rpc-client = "2.1.0"
solana-rpc-client-api = "2.1.0"
solana-sdk = "2.1.0"
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
spl-associated-token-account-client = { version = "2.0.0", path = "../../associated-token-account/client" }
spl-elgamal-registry = { version = "0.1.0", path = "../confidential-transfer/elgamal-registry"}
spl-memo = { version = "6.0", path = "../../memo/program", features = [
"no-entrypoint",
Expand Down

0 comments on commit 72bb80d

Please sign in to comment.