Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: Bump tlv-account-resolution and dependents #5367

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 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-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ solana-program-test = "1.16.13"
solana-sdk = "1.16.13"
spl-associated-token-account = { version = "2", path = "../program", features = ["no-entrypoint"] }
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
4 changes: 2 additions & 2 deletions associated-token-account/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-associated-token-account"
version = "2.1.0"
version = "2.2.0"
description = "Solana Program Library Associated Token Account"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -18,7 +18,7 @@ num-derive = "0.4"
num-traits = "0.2"
solana-program = "1.16.13"
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
thiserror = "1.0"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion libraries/tlv-account-resolution/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-tlv-account-resolution"
version = "0.3.0"
version = "0.4.0"
description = "Solana Program Library TLV Account Resolution Interface"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
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.16.13"
solana-transaction-status = "=1.16.13"
solana-vote-program = "=1.16.13"
spl-token = { version = "4.0", path="../../token/program", features = [ "no-entrypoint" ] }
spl-token-client = { version = "0.6", path="../../token/client" }
spl-token-client = { version = "0.7", path="../../token/client" }
spl-associated-token-account = { version = "2.0", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-single-validator-pool = { version = "1.0.0", path="../program", features = [ "no-entrypoint" ] }

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 @@ -23,7 +23,7 @@ solana-logger = "=1.16.13"
solana-program = "=1.16.13"
solana-remote-wallet = "=1.16.13"
solana-sdk = "=1.16.13"
spl-associated-token-account = { version = "=2.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-associated-token-account = { version = "=2.2", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
spl-stake-pool = { version = "=0.7.0", path="../program", features = [ "no-entrypoint" ] }
spl-token = { version = "=4.0", path="../../token/program", features = [ "no-entrypoint" ] }
bs58 = "0.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 @@ -23,7 +23,7 @@ serde_derive = "1.0.103"
solana-program = "1.16.13"
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
spl-pod = { version = "0.1", path = "../../libraries/pod", features = ["borsh"] }
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
thiserror = "1.0"
bincode = "1.3.1"

Expand Down
4 changes: 2 additions & 2 deletions token-metadata/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ test-sbf = []

[dependencies]
solana-program = "1.16.13"
spl-token-2022 = { version = "0.8", path = "../../token/program-2022" }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022" }
spl-token-metadata-interface = { version = "0.2.0", path = "../interface" }
spl-type-length-value = { version = "0.3.0" , path = "../../libraries/type-length-value" }
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = "1.16.13"
solana-sdk = "1.16.13"
spl-token-client = { version = "0.6", path = "../../token/client" }
spl-token-client = { version = "0.7", path = "../../token/client" }
test-case = "3.2"

[lib]
Comment on lines 13 to 27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to bump the minor version of the Token Metadata example considering these dependency changes?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess I don't see you doing that in a few other libs, maybe not necessary? Like stake-pool and the swap/upgrade/wrap programs.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, pretty much I want to publish everything necessary for a new token-2022 to be used in the monorepo, which is only the core crates. We can bump all the other programs at some other point and release them separately

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok sgtm!

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 @@ -20,7 +20,7 @@ num-traits = "0.2"
solana-program = "1.16.13"
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
spl-token = { version = "4.0", path = "../../token/program", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
thiserror = "1.0"
arbitrary = { version = "1.0", features = ["derive"], optional = true }
roots = { version = "0.0.8", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions token-upgrade/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ solana-remote-wallet = "1.16.13"
solana-sdk = "1.16.13"
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.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.6", path = "../../token/client" }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.7", path = "../../token/client" }
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
tokio = { version = "1", features = ["full"] }

Expand Down
4 changes: 2 additions & 2 deletions token-upgrade/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ num-derive = "0.4"
num-traits = "0.2"
num_enum = "0.7.0"
solana-program = "1.16.13"
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
thiserror = "1.0"

[dev-dependencies]
solana-program-test = "1.16.13"
solana-sdk = "1.16.13"
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-client = { version = "0.6", path = "../../token/client" }
spl-token-client = { version = "0.7", path = "../../token/client" }
test-case = "3.2"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion token-wrap/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num_enum = "0.7"
solana-program = "1.16.13"
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.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.9", path = "../../token/program-2022", features = ["no-entrypoint"] }
thiserror = "1.0"

[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 @@ -27,8 +27,8 @@ solana-remote-wallet = "=1.16.13"
solana-sdk = "=1.16.13"
solana-transaction-status = "=1.16.13"
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.8", path="../program-2022", features = [ "no-entrypoint" ] }
spl-token-client = { version = "0.6", path="../client" }
spl-token-2022 = { version = "0.9", path="../program-2022", features = [ "no-entrypoint" ] }
spl-token-client = { version = "0.7", 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" ] }
spl-memo = { version = "4.0.0", path="../../memo/program", features = ["no-entrypoint"] }
Expand Down
6 changes: 3 additions & 3 deletions 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.6.0"
version = "0.7.0"

[dependencies]
async-trait = "0.1"
Expand All @@ -23,9 +23,9 @@ solana-sdk = "1.16.13"
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-memo = { version = "4.0.0", path = "../../memo/program", features = ["no-entrypoint"] }
spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "0.8", path="../program-2022" }
spl-token-2022 = { version = "0.9", path="../program-2022" }
spl-token-metadata-interface = { version = "0.2", path="../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.2", path="../transfer-hook-interface" }
spl-transfer-hook-interface = { version = "0.3", path="../transfer-hook-interface" }
thiserror = "1.0"

[features]
Expand Down
8 changes: 4 additions & 4 deletions token/program-2022-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ solana-sdk = "=1.16.13"
spl-associated-token-account = { version = "2.0", path = "../../associated-token-account/program" }
spl-memo = { version = "4.0.0", path = "../../memo/program", features = ["no-entrypoint"] }
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
spl-token-2022 = { version = "0.8", path="../program-2022", features = ["no-entrypoint"] }
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.6", path = "../client" }
spl-token-client = { version = "0.7", path = "../client" }
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
spl-transfer-hook-example = { version = "0.2", path="../transfer-hook-example", features = ["no-entrypoint"] }
spl-transfer-hook-interface = { version = "0.2", path="../transfer-hook-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" }
test-case = "3.2"
Loading
Loading