Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 950efde

Browse files
authored
Bump SPL crate versions (#6221)
* 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
1 parent 651f2a0 commit 950efde

File tree

26 files changed

+251
-251
lines changed

26 files changed

+251
-251
lines changed

Cargo.lock

Lines changed: 200 additions & 200 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

associated-token-account/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-associated-token-account"
3-
version = "2.3.0"
3+
version = "2.3.1"
44
description = "Solana Program Library Associated Token Account"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

feature-gate/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test-sbf = []
1414
[dependencies]
1515
num_enum = "0.7.2"
1616
solana-program = ">=1.17.17,<=2"
17-
spl-program-error = { version = "0.3.0", path = "../../libraries/program-error" }
17+
spl-program-error = { version = "0.3.1", path = "../../libraries/program-error" }
1818

1919
[dev-dependencies]
2020
solana-program-test = ">=1.17.17,<=2"

instruction-padding/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-instruction-padding"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Solana Program Library Instruction Padding Program"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

libraries/discriminator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-discriminator"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Solana Program Library 8-Byte Discriminator Management"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -14,7 +14,7 @@ borsh = ["dep:borsh"]
1414
borsh = { version = "0.10", optional = true }
1515
bytemuck = { version = "1.14.1", features = ["derive"] }
1616
solana-program = ">=1.17.17,<=2"
17-
spl-discriminator-derive = { version = "0.1.0", path = "./derive" }
17+
spl-discriminator-derive = { version = "0.1.2", path = "./derive" }
1818

1919
[lib]
2020
crate-type = ["cdylib", "lib"]

libraries/discriminator/derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-discriminator-derive"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Derive macro library for the `spl-discriminator` library"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -9,7 +9,7 @@ edition = "2021"
99

1010
[dependencies]
1111
quote = "1.0"
12-
spl-discriminator-syn = { version = "0.1.0", path = "../syn" }
12+
spl-discriminator-syn = { version = "0.1.2", path = "../syn" }
1313
syn = { version = "2.0", features = ["full"] }
1414

1515
[lib]

libraries/discriminator/syn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-discriminator-syn"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "Token parsing and generating library for the `spl-discriminator` library"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

libraries/pod/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-pod"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Solana Program Library Plain Old Data (Pod)"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

libraries/program-error/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-program-error"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Library for Solana Program error attributes and derive macro for creating them"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -11,7 +11,7 @@ edition = "2021"
1111
num-derive = "0.4"
1212
num-traits = "0.2"
1313
solana-program = ">=1.17.17,<=2"
14-
spl-program-error-derive = { version = "0.3.1", path = "./derive" }
14+
spl-program-error-derive = { version = "0.3.2", path = "./derive" }
1515
thiserror = "1.0"
1616

1717
[dev-dependencies]

libraries/program-error/derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-program-error-derive"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
description = "Proc-Macro Library for Solana Program error attributes and derive macro"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

0 commit comments

Comments
 (0)