Skip to content

Commit

Permalink
Bump all crates for token-cli release (#6516)
Browse files Browse the repository at this point in the history
* Bump pod to 0.2.2

* Bump program-error and derive to 0.4.0

* Bump type-length-value to 0.4.3

* Bump tlv-account-resolution to 0.6.3

* Bump token-group-interface to 0.2.3

* Bump token-metadata-interface to 0.3.3

* Bump token-2022 to 3.0.2

* Bump transfer-hook-interface to 0.6.3

* Bump token-client to 0.9.2

* Bump associated-token-account to 3.0.2

* Bump discriminator, derive, and syn to 0.2.x
  • Loading branch information
joncinque committed Mar 28, 2024
1 parent b6f04df commit 8c8e7de
Show file tree
Hide file tree
Showing 36 changed files with 217 additions and 217 deletions.
208 changes: 104 additions & 104 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions associated-token-account/program-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ test-sbf = []
solana-program = ">=1.18.2,<=2"
solana-program-test = ">=1.18.2,<=2"
solana-sdk = ">=1.18.2,<=2"
spl-associated-token-account = { version = "3.0", path = "../program", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "3.0.2", path = "../program", features = ["no-entrypoint"] }
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-2022 = { version = "3.0.2", 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 = "3.0.0"
version = "3.0.2"
description = "Solana Program Library Associated Token Account"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -20,7 +20,7 @@ solana-program = ">=1.18.2,<=2"
spl-token = { version = "4.0", path = "../../token/program", features = [
"no-entrypoint",
] }
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = [
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = [
"no-entrypoint",
] }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion feature-gate/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test-sbf = []
[dependencies]
num_enum = "0.7.2"
solana-program = ">=1.18.2,<=2"
spl-program-error = { version = "0.3.1", path = "../../libraries/program-error" }
spl-program-error = { version = "0.4.0", path = "../../libraries/program-error" }

[dev-dependencies]
solana-program-test = ">=1.18.2,<=2"
Expand Down
4 changes: 2 additions & 2 deletions libraries/discriminator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-discriminator"
version = "0.2.0"
version = "0.2.2"
description = "Solana Program Library 8-Byte Discriminator Management"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -14,7 +14,7 @@ borsh = ["dep:borsh"]
borsh = { version = "1", optional = true }
bytemuck = { version = "1.15.0", features = ["derive"] }
solana-program = ">=1.18.2,<=2"
spl-discriminator-derive = { version = "0.1.2", path = "./derive" }
spl-discriminator-derive = { version = "0.2.0", path = "./derive" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
4 changes: 2 additions & 2 deletions libraries/discriminator/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-discriminator-derive"
version = "0.1.2"
version = "0.2.0"
description = "Derive macro library for the `spl-discriminator` library"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -9,7 +9,7 @@ edition = "2021"

[dependencies]
quote = "1.0"
spl-discriminator-syn = { version = "0.1.2", path = "../syn" }
spl-discriminator-syn = { version = "0.2.0", path = "../syn" }
syn = { version = "2.0", features = ["full"] }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion libraries/discriminator/syn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-discriminator-syn"
version = "0.1.2"
version = "0.2.0"
description = "Token parsing and generating library for the `spl-discriminator` library"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
4 changes: 2 additions & 2 deletions libraries/pod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-pod"
version = "0.2.0"
version = "0.2.2"
description = "Solana Program Library Plain Old Data (Pod)"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -18,7 +18,7 @@ bytemuck = { version = "1.15.0" }
serde = { version = "1.0.197", optional = true }
solana-program = ">=1.18.2,<=2"
solana-zk-token-sdk = ">=1.18.2,<=2"
spl-program-error = { version = "0.3", path = "../program-error" }
spl-program-error = { version = "0.4.0", path = "../program-error" }

[dev-dependencies]
serde_json = "1.0.115"
Expand Down
4 changes: 2 additions & 2 deletions libraries/program-error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-program-error"
version = "0.3.1"
version = "0.4.0"
description = "Library for Solana Program error attributes and derive macro for creating them"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -11,7 +11,7 @@ edition = "2021"
num-derive = "0.4"
num-traits = "0.2"
solana-program = ">=1.18.2,<=2"
spl-program-error-derive = { version = "0.3.2", path = "./derive" }
spl-program-error-derive = { version = "0.4.0", path = "./derive" }
thiserror = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libraries/program-error/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-program-error-derive"
version = "0.3.2"
version = "0.4.0"
description = "Proc-Macro Library for Solana Program error attributes and derive macro"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
10 changes: 5 additions & 5 deletions 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.6.1"
version = "0.6.3"
description = "Solana Program Library TLV Account Resolution Interface"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -15,10 +15,10 @@ test-sbf = []
bytemuck = { version = "1.15.0", features = ["derive"] }
serde = { version = "1.0.197", optional = true }
solana-program = ">=1.18.2,<=2"
spl-discriminator = { version = "0.2", path = "../discriminator" }
spl-program-error = { version = "0.3", path = "../program-error" }
spl-type-length-value = { version = "0.4", path = "../type-length-value" }
spl-pod = { version = "0.2", path = "../pod" }
spl-discriminator = { version = "0.2.2", path = "../discriminator" }
spl-program-error = { version = "0.4.0", path = "../program-error" }
spl-type-length-value = { version = "0.4.3", path = "../type-length-value" }
spl-pod = { version = "0.2.2", path = "../pod" }

[dev-dependencies]
futures = "0.3.30"
Expand Down
4 changes: 2 additions & 2 deletions libraries/type-length-value-derive-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
[dev-dependencies]
borsh = "1.2.1"
solana-program = "1.16"
spl-discriminator = { version = "0.2", path = "../discriminator" }
spl-type-length-value = { version = "0.4", path = "../type-length-value", features = [
spl-discriminator = { version = "0.2.2", path = "../discriminator" }
spl-type-length-value = { version = "0.4.3", path = "../type-length-value", features = [
"derive",
] }
8 changes: 4 additions & 4 deletions libraries/type-length-value/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-type-length-value"
version = "0.4.1"
version = "0.4.3"
description = "Solana Program Library Type-Length-Value Management"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -14,10 +14,10 @@ derive = ["dep:spl-type-length-value-derive"]
[dependencies]
bytemuck = { version = "1.15.0", features = ["derive"] }
solana-program = ">=1.18.2,<=2"
spl-discriminator = { version = "0.2", path = "../discriminator" }
spl-program-error = { version = "0.3", path = "../program-error" }
spl-discriminator = { version = "0.2.2", path = "../discriminator" }
spl-program-error = { version = "0.4.0", path = "../program-error" }
spl-type-length-value-derive = { version = "0.1", path = "./derive", optional = true }
spl-pod = { version = "0.2", path = "../pod" }
spl-pod = { version = "0.2.2", path = "../pod" }

[lib]
crate-type = ["cdylib", "lib"]
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 @@ -25,7 +25,7 @@ test = []
borsh = "1.2.1"
shank = "^0.4.2"
solana-program = ">=1.18.2,<=2"
spl-associated-token-account = { version = "3.0", path = "../../associated-token-account/program", features = [
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-token = { version = "4.0", path = "../../token/program", features = [
Expand Down
2 changes: 1 addition & 1 deletion record/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ num-derive = "0.4"
num-traits = "0.2"
solana-program = ">=1.18.2,<=2"
thiserror = "1.0"
spl-pod = { version = "0.2", path = "../../libraries/pod" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = ">=1.18.2,<=2"
Expand Down
4 changes: 2 additions & 2 deletions single-pool/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ solana-vote-program = ">=1.18.2,<=2"
spl-token = { version = "4.0", path = "../../token/program", features = [
"no-entrypoint",
] }
spl-token-client = { version = "0.9", path = "../../token/client" }
spl-associated-token-account = { version = "3.0", path = "../../associated-token-account/program", features = [
spl-token-client = { version = "0.9.2", path = "../../token/client" }
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-single-pool = { version = "1.0.0", path = "../program", features = [
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 @@ -22,7 +22,7 @@ solana-security-txt = "1.1.1"
spl-token = { version = "4.0", path = "../../token/program", features = [
"no-entrypoint",
] }
spl-associated-token-account = { version = "3.0", path = "../../associated-token-account/program", features = [
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
thiserror = "1.0"
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.18.2,<=2"
solana-program = ">=1.18.2,<=2"
solana-remote-wallet = ">=1.18.2,<=2"
solana-sdk = ">=1.18.2,<=2"
spl-associated-token-account = { version = "=3.0", path = "../../associated-token-account/program", features = [
spl-associated-token-account = { version = "=3.0.2", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
spl-stake-pool = { version = "=1.0.0", path = "../program", features = [
Expand Down
4 changes: 2 additions & 2 deletions stake-pool/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ solana-security-txt = "1.1.1"
spl-math = { version = "0.2", path = "../../libraries/math", features = [
"no-entrypoint",
] }
spl-pod = { version = "0.2", path = "../../libraries/pod", features = [
spl-pod = { version = "0.2.2", path = "../../libraries/pod", features = [
"borsh",
] }
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = [
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = [
"no-entrypoint",
] }
thiserror = "1.0"
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 = ">=1.18.2,<=2"
spl-token = { version = "4.0", path = "../../token/program", features = [
"no-entrypoint",
] }
spl-associated-token-account = { version = "3.0", path = "../../associated-token-account/program", features = [
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = [
"no-entrypoint",
] }
thiserror = "1.0"
Expand Down
16 changes: 8 additions & 8 deletions token-collection/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ test-sbf = []

[dependencies]
solana-program = ">=1.18.2,<=2"
spl-pod = { version = "0.2", path = "../../libraries/pod" }
spl-program-error = { version = "0.3.1" , path = "../../libraries/program-error" }
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-program-error = { version = "0.4.0" , path = "../../libraries/program-error" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-example = { version = "0.2", path = "../../token-group/example", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.3", path = "../../token-metadata/interface" }
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }

[dev-dependencies]
solana-program-test = ">=1.18.2,<=2"
solana-sdk = ">=1.18.2,<=2"
spl-discriminator = { version = "0.2", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.9", path = "../../token/client" }
spl-discriminator = { version = "0.2.2", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.9.2", path = "../../token/client" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
14 changes: 7 additions & 7 deletions token-group/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ test-sbf = []

[dependencies]
solana-program = ">=1.18.2,<=2"
spl-pod = { version = "0.2", path = "../../libraries/pod" }
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2", path = "../interface" }
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.2.3", path = "../interface" }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }

[dev-dependencies]
solana-program-test = ">=1.18.2,<=2"
solana-sdk = ">=1.18.2,<=2"
spl-discriminator = { version = "0.2", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.9", path = "../../token/client" }
spl-token-metadata-interface = { version = "0.3", path = "../../token-metadata/interface" }
spl-discriminator = { version = "0.2.2", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.9.2", path = "../../token/client" }
spl-token-metadata-interface = { version = "0.3.3", path = "../../token-metadata/interface" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
10 changes: 5 additions & 5 deletions token-group/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-token-group-interface"
version = "0.2.1"
version = "0.2.3"
description = "Solana Program Library Token Group Interface"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -10,12 +10,12 @@ edition = "2021"
[dependencies]
bytemuck = "1.15.0"
solana-program = ">=1.18.2,<=2"
spl-discriminator = { version = "0.2" , path = "../../libraries/discriminator" }
spl-pod = { version = "0.2" , path = "../../libraries/pod", features = ["borsh"] }
spl-program-error = { version = "0.3.1" , path = "../../libraries/program-error" }
spl-discriminator = { version = "0.2.2" , path = "../../libraries/discriminator" }
spl-pod = { version = "0.2.2" , path = "../../libraries/pod", features = ["borsh"] }
spl-program-error = { version = "0.4.0" , path = "../../libraries/program-error" }

[dev-dependencies]
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value", features = ["derive"] }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value", features = ["derive"] }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
10 changes: 5 additions & 5 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.18.2,<=2"
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-metadata-interface = { version = "0.3", path = "../interface" }
spl-type-length-value = { version = "0.4" , path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2", path = "../../libraries/pod" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-metadata-interface = { version = "0.3.3", path = "../interface" }
spl-type-length-value = { version = "0.4.3" , path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = ">=1.18.2,<=2"
solana-sdk = ">=1.18.2,<=2"
spl-token-client = { version = "0.9", path = "../../token/client" }
spl-token-client = { version = "0.9.2", path = "../../token/client" }
test-case = "3.3"

[lib]
Expand Down
10 changes: 5 additions & 5 deletions token-metadata/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-token-metadata-interface"
version = "0.3.1"
version = "0.3.3"
description = "Solana Program Library Token Metadata Interface"
authors = ["Solana Labs Maintainers <maintainers@solanalabs.com>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -14,10 +14,10 @@ serde-traits = ["dep:serde", "spl-pod/serde-traits"]
borsh = "1.2.1"
serde = { version = "1.0.197", optional = true }
solana-program = ">=1.18.2,<=2"
spl-discriminator = { version = "0.2", path = "../../libraries/discriminator" }
spl-program-error = { version = "0.3", path = "../../libraries/program-error" }
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2", path = "../../libraries/pod", features = [
spl-discriminator = { version = "0.2.2", path = "../../libraries/discriminator" }
spl-program-error = { version = "0.4.0", path = "../../libraries/program-error" }
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.2.2", path = "../../libraries/pod", features = [
"borsh",
] }

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.18.2,<=2"
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 = "3.0", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
thiserror = "1.0"
arbitrary = { version = "1.3", features = ["derive"], optional = true }
roots = { version = "0.0.8", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions token-upgrade/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ solana-client = ">=1.18.2,<=2"
solana-logger = ">=1.18.2,<=2"
solana-remote-wallet = ">=1.18.2,<=2"
solana-sdk = ">=1.18.2,<=2"
spl-associated-token-account = { version = "3.0", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-associated-token-account = { version = "3.0.2", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.9", path = "../../token/client" }
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.9.2", path = "../../token/client" }
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
tokio = { version = "1", features = ["full"] }

Expand Down

0 comments on commit 8c8e7de

Please sign in to comment.