Skip to content

Commit

Permalink
token-cli{,ent}: Bump version for release (#5689)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque authored Oct 29, 2023
1 parent 74bc26e commit d32da0d
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 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 single-pool/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] }

Expand Down
4 changes: 2 additions & 2 deletions token-collection/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
targets = ["x86_64-unknown-linux-gnu"]
4 changes: 2 additions & 2 deletions token-group/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
targets = ["x86_64-unknown-linux-gnu"]
2 changes: 1 addition & 1 deletion token-metadata/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
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 @@ -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"] }

Expand Down
2 changes: 1 addition & 1 deletion token-upgrade/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions token/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion token/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion token/program-2022-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion token/transfer-hook/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d32da0d

Please sign in to comment.