forked from solana-labs/solana-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump SPL crate versions (solana-labs#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
- Loading branch information
1 parent
651f2a0
commit 950efde
Showing
26 changed files
with
251 additions
and
251 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|