Skip to content

Commit

Permalink
token: Bump to 3.2.0 everywhere (#2116)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque committed Jul 20, 2021
1 parent ea354ab commit ddc029e
Show file tree
Hide file tree
Showing 11 changed files with 29 additions and 29 deletions.
38 changes: 19 additions & 19 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 associated-token-account/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test-bpf = []

[dependencies]
solana-program = "1.7.4"
spl-token = { version = "3.1", path = "../../token/program", features = ["no-entrypoint"] }
spl-token = { version = "3.2", path = "../../token/program", features = ["no-entrypoint"] }

[dev-dependencies]
solana-program-test = "1.7.4"
Expand Down
2 changes: 1 addition & 1 deletion binary-oracle-pair/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test-bpf = []
num-derive = "0.3"
num-traits = "0.2"
solana-program = "1.7.4"
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
thiserror = "1.0"
uint = "0.9"
arbitrary = { version = "0.4", features = ["derive"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion feature-proposal/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test-bpf = []
borsh = "0.9"
borsh-derive = "0.9.0"
solana-program = "1.7.4"
spl-token = { version = "3.1", path = "../../token/program", features = ["no-entrypoint"] }
spl-token = { version = "3.2", path = "../../token/program", features = ["no-entrypoint"] }

[dev-dependencies]
solana-program-test = "1.7.4"
Expand Down
2 changes: 1 addition & 1 deletion governance/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ num-traits = "0.2"
serde = "1.0.126"
serde_derive = "1.0.103"
solana-program = "1.7.4"
spl-token = { version = "3.1.1", path = "../../token/program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
thiserror = "1.0"

[dev-dependencies]
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 @@ -22,7 +22,7 @@ solana-remote-wallet = "=1.7.4"
solana-sdk = "=1.7.4"
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "0.4", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.1", path="../../token/program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path="../../token/program", features = [ "no-entrypoint" ] }
bs58 = "0.4.0"
bincode = "1.3.1"
lazy_static = "1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ num_enum = "0.5.1"
serde = "1.0.126"
serde_derive = "1.0.103"
solana-program = "1.7.4"
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
thiserror = "1.0"
bincode = "1.3.1"

Expand Down
2 changes: 1 addition & 1 deletion token-swap/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ num-derive = "0.3"
num-traits = "0.2"
solana-program = "1.7.4"
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
spl-token = { version = "3.1", path = "../../token/program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path = "../../token/program", features = [ "no-entrypoint" ] }
thiserror = "1.0"
arbitrary = { version = "0.4", features = ["derive"], optional = true }
roots = { version = "0.0.7", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion token-swap/program/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ honggfuzz = { version = "0.5.52" }
arbitrary = { version = "0.4", features = ["derive"] }
solana-program = "1.7.3"
spl-math = { version = "0.1", path = "../../../libraries/math", features = [ "no-entrypoint" ] }
spl-token = { version = "3.1", path = "../../../token/program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path = "../../../token/program", features = [ "no-entrypoint" ] }
spl-token-swap = { path = "..", features = ["fuzz", "no-entrypoint"] }

[[bin]]
Expand Down
2 changes: 1 addition & 1 deletion token/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ solana-client = "=1.7.4"
solana-logger = "=1.7.4"
solana-remote-wallet = "=1.7.4"
solana-sdk = "=1.7.4"
spl-token = { version = "3.1", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "3.2", path="../program", features = [ "no-entrypoint" ] }
spl-associated-token-account = { version = "1.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }

Expand Down
2 changes: 1 addition & 1 deletion token/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-token"
version = "3.1.1"
version = "3.2.0"
description = "Solana Program Library Token"
authors = ["Solana Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down

0 comments on commit ddc029e

Please sign in to comment.