Skip to content

Commit

Permalink
Bump SPL crate versions (solana-labs#6221)
Browse files Browse the repository at this point in the history
* Update associated-token-account version to 2.3.1

* Update discriminator version to 0.1.1

* Update discriminator-derive version to 0.1.2

* Update discriminator-syn version to 0.1.2

* Update instruction-padding version to 0.1.1

* Update memo version to 4.0.1

* Update pod version to 0.1.1

* Update program-error version to 0.3.1

* Update program-error-derive version to 0.3.2

* Update tlv-account-resolution version to 0.5.2

* Update token version to 4.0.1

* Cargo.lock

* Update token-group-interface version to 0.1.1

* Update token-metadata-interface version to 0.2.1

* Update transfer-hook-interface version to 0.5.1

* Update type-length-value version to 0.3.1

* Cargo.lock

* Remove extraneous whitespace
  • Loading branch information
willhickey authored Feb 5, 2024
1 parent 651f2a0 commit 950efde
Show file tree
Hide file tree
Showing 26 changed files with 251 additions and 251 deletions.
400 changes: 200 additions & 200 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion 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.3.0"
version = "2.3.1"
description = "Solana Program Library Associated Token Account"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
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.17.17,<=2"
spl-program-error = { version = "0.3.0", path = "../../libraries/program-error" }
spl-program-error = { version = "0.3.1", path = "../../libraries/program-error" }

[dev-dependencies]
solana-program-test = ">=1.17.17,<=2"
Expand Down
2 changes: 1 addition & 1 deletion instruction-padding/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-instruction-padding"
version = "0.1.0"
version = "0.1.1"
description = "Solana Program Library Instruction Padding Program"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
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.1.0"
version = "0.1.1"
description = "Solana Program Library 8-Byte Discriminator Management"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -14,7 +14,7 @@ borsh = ["dep:borsh"]
borsh = { version = "0.10", optional = true }
bytemuck = { version = "1.14.1", features = ["derive"] }
solana-program = ">=1.17.17,<=2"
spl-discriminator-derive = { version = "0.1.0", path = "./derive" }
spl-discriminator-derive = { version = "0.1.2", 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.1"
version = "0.1.2"
description = "Derive macro library for the `spl-discriminator` library"
authors = ["Solana Labs Maintainers <[email protected]>"]
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.0", path = "../syn" }
spl-discriminator-syn = { version = "0.1.2", 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.1"
version = "0.1.2"
description = "Token parsing and generating library for the `spl-discriminator` library"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
2 changes: 1 addition & 1 deletion libraries/pod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-pod"
version = "0.1.0"
version = "0.1.1"
description = "Solana Program Library Plain Old Data (Pod)"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
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.0"
version = "0.3.1"
description = "Library for Solana Program error attributes and derive macro for creating them"
authors = ["Solana Labs Maintainers <[email protected]>"]
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.17.17,<=2"
spl-program-error-derive = { version = "0.3.1", path = "./derive" }
spl-program-error-derive = { version = "0.3.2", 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.1"
version = "0.3.2"
description = "Proc-Macro Library for Solana Program error attributes and derive macro"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
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.5.1"
version = "0.5.2"
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
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,5 +10,5 @@ edition = "2021"
[dev-dependencies]
borsh = "0.10"
solana-program = "1.16"
spl-discriminator = { version = "0.1.0", path = "../discriminator" }
spl-type-length-value = { version = "0.3.0", path = "../type-length-value", features = ["derive"] }
spl-discriminator = { version = "0.1.1", path = "../discriminator" }
spl-type-length-value = { version = "0.3.1", path = "../type-length-value", features = ["derive"] }
2 changes: 1 addition & 1 deletion 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.3.0"
version = "0.3.1"
description = "Solana Program Library Type-Length-Value Management"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
2 changes: 1 addition & 1 deletion memo/program/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-memo"
version = "4.0.0"
version = "4.0.1"
description = "Solana Program Library Memo"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
10 changes: 5 additions & 5 deletions token-collection/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ test-sbf = []

[dependencies]
solana-program = ">=1.17.17,<=2"
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
spl-program-error = { version = "0.3.0" , path = "../../libraries/program-error" }
spl-pod = { version = "0.1.1", path = "../../libraries/pod" }
spl-program-error = { version = "0.3.1" , path = "../../libraries/program-error" }
spl-token-2022 = { version = "2.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-example = { version = "0.1.0", path = "../../token-group/example", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.1.0", path = "../../token-group/interface" }
spl-token-group-interface = { version = "0.1.1", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length-value" }
spl-type-length-value = { version = "0.3.1", path = "../../libraries/type-length-value" }

[dev-dependencies]
solana-program-test = ">=1.17.17,<=2"
solana-sdk = ">=1.17.17,<=2"
spl-discriminator = { version = "0.1.0", path = "../../libraries/discriminator" }
spl-discriminator = { version = "0.1.1", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.8", path = "../../token/client" }

[lib]
Expand Down
8 changes: 4 additions & 4 deletions token-group/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.17.17,<=2"
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
spl-pod = { version = "0.1.1", path = "../../libraries/pod" }
spl-token-2022 = { version = "2.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.1.0", path = "../interface" }
spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length-value" }
spl-token-group-interface = { version = "0.1.1", path = "../interface" }
spl-type-length-value = { version = "0.3.1", path = "../../libraries/type-length-value" }

[dev-dependencies]
solana-program-test = ">=1.17.17,<=2"
solana-sdk = ">=1.17.17,<=2"
spl-discriminator = { version = "0.1.0", path = "../../libraries/discriminator" }
spl-discriminator = { version = "0.1.1", path = "../../libraries/discriminator" }
spl-token-client = { version = "0.8", path = "../../token/client" }
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }

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.1.0"
version = "0.1.1"
description = "Solana Program Library Token Group Interface"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand All @@ -10,12 +10,12 @@ edition = "2021"
[dependencies]
bytemuck = "1.14.1"
solana-program = ">=1.17.17,<=2"
spl-discriminator = { version = "0.1.0" , path = "../../libraries/discriminator" }
spl-pod = { version = "0.1.0" , path = "../../libraries/pod", features = ["borsh"] }
spl-program-error = { version = "0.3.0" , path = "../../libraries/program-error" }
spl-discriminator = { version = "0.1.1" , path = "../../libraries/discriminator" }
spl-pod = { version = "0.1.1" , path = "../../libraries/pod", features = ["borsh"] }
spl-program-error = { version = "0.3.1" , path = "../../libraries/program-error" }

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

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
6 changes: 3 additions & 3 deletions token-metadata/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ test-sbf = []
[dependencies]
solana-program = ">=1.17.17,<=2"
spl-token-2022 = { version = "2.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
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" }
spl-token-metadata-interface = { version = "0.2.1", path = "../interface" }
spl-type-length-value = { version = "0.3.1" , path = "../../libraries/type-length-value" }
spl-pod = { version = "0.1.1", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = ">=1.17.17,<=2"
Expand Down
2 changes: 1 addition & 1 deletion 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.2.0"
version = "0.2.1"
description = "Solana Program Library Token Metadata Interface"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down
2 changes: 1 addition & 1 deletion token/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spl-token-group-interface = { version = "0.1", path = "../../token-group/interfa
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 = [
spl-memo = { version = "4.0.1", path = "../../memo/program", features = [
"no-entrypoint",
] }
strum = "0.26"
Expand Down
2 changes: 1 addition & 1 deletion token/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ solana-sdk = ">=1.17.17,<=2"
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 = [
spl-memo = { version = "4.0.1", path = "../../memo/program", features = [
"no-entrypoint",
] }
spl-token = { version = "4.0", path = "../program", 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 @@ -23,11 +23,11 @@ solana-program = ">=1.17.17,<=2"
solana-program-test = ">=1.17.17,<=2"
solana-sdk = ">=1.17.17,<=2"
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-memo = { version = "4.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
spl-pod = { version = "0.1.1", path = "../../libraries/pod" }
spl-token-2022 = { version = "2.0", path="../program-2022", features = ["no-entrypoint"] }
spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/program", features = ["no-entrypoint"] }
spl-tlv-account-resolution = { version = "0.5.0", path = "../../libraries/tlv-account-resolution" }
spl-instruction-padding = { version = "0.1.1", path="../../instruction-padding/program", features = ["no-entrypoint"] }
spl-tlv-account-resolution = { version = "0.5.2", path = "../../libraries/tlv-account-resolution" }
spl-token-client = { version = "0.8", path = "../client" }
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
Expand Down
14 changes: 7 additions & 7 deletions token/program-2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ num_enum = "0.7.2"
solana-program = ">=1.17.17,<=2"
solana-security-txt = "1.1.1"
solana-zk-token-sdk = ">=1.17.17,<=2"
spl-memo = { version = "4.0.0", path = "../../memo/program", features = [ "no-entrypoint" ] }
spl-memo = { version = "4.0.1", path = "../../memo/program", features = [ "no-entrypoint" ] }
spl-token = { version = "4.0", path = "../program", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.1.0", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.2.0", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.5.0", path = "../transfer-hook/interface" }
spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
spl-token-group-interface = { version = "0.1.1", path = "../../token-group/interface" }
spl-token-metadata-interface = { version = "0.2.1", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.5.1", path = "../transfer-hook/interface" }
spl-type-length-value = { version = "0.3.1", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.1.1", path = "../../libraries/pod" }
thiserror = "1.0"
serde = { version = "1.0.196", optional = true }
serde_with = { version = "3.6.0", optional = true }
Expand All @@ -47,7 +47,7 @@ proptest = "1.4"
serial_test = "3.0.0"
solana-program-test = ">=1.17.17,<=2"
solana-sdk = ">=1.17.17,<=2"
spl-tlv-account-resolution = { version = "0.5.0", path = "../../libraries/tlv-account-resolution" }
spl-tlv-account-resolution = { version = "0.5.2", path = "../../libraries/tlv-account-resolution" }
serde_json = "1.0.113"

[lib]
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 = "4.0.0"
version = "4.0.1"
description = "Solana Program Library Token"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
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 @@ -18,7 +18,7 @@ solana-logger = ">=1.17.17,<=2"
solana-remote-wallet = ">=1.17.17,<=2"
solana-sdk = ">=1.17.17,<=2"
spl-transfer-hook-interface = { version = "0.5", path = "../interface" }
spl-tlv-account-resolution = { version = "0.5.1" , path = "../../../libraries/tlv-account-resolution", features = ["serde-traits"] }
spl-tlv-account-resolution = { version = "0.5.2" , path = "../../../libraries/tlv-account-resolution", features = ["serde-traits"] }
strum = "0.26"
strum_macros = "0.26"
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion token/transfer-hook/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-transfer-hook-interface"
version = "0.5.0"
version = "0.5.1"
description = "Solana Program Library Transfer Hook Interface"
authors = ["Solana Labs Maintainers <[email protected]>"]
repository = "https://github.com/solana-labs/solana-program-library"
Expand Down

0 comments on commit 950efde

Please sign in to comment.