Skip to content

Commit

Permalink
Publish spl-pod v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 1, 2024
1 parent f2c64ec commit ce56586
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 30 deletions.
30 changes: 15 additions & 15 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 libraries/pod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spl-pod"
version = "0.4.0"
version = "0.5.0"
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
2 changes: 1 addition & 1 deletion libraries/tlv-account-resolution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ solana-msg = "2.1.0"
solana-pubkey = "2.1.0"
spl-discriminator = { version = "0.3.0", path = "../discriminator" }
spl-program-error = { version = "0.5.0", path = "../program-error" }
spl-pod = { version = "0.4.0", path = "../pod" }
spl-pod = { version = "0.5.0", path = "../pod" }
spl-type-length-value = { version = "0.6.0", path = "../type-length-value" }
thiserror = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion libraries/type-length-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ solana-msg = "2.1.0"
solana-program-error = "2.1.0"
spl-discriminator = { version = "0.3.0", path = "../discriminator" }
spl-type-length-value-derive = { version = "0.1", path = "./derive", optional = true }
spl-pod = { version = "0.4.0", path = "../pod" }
spl-pod = { version = "0.5.0", path = "../pod" }
thiserror = "1.0"

[lib]
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 = "2.1.0"
thiserror = "1.0"
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = "2.1.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 @@ -22,7 +22,7 @@ serde = "1.0.214"
serde_derive = "1.0.103"
solana-program = "2.1.0"
solana-security-txt = "1.1.1"
spl-pod = { version = "0.4.0", path = "../../libraries/pod", features = [
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = [
"borsh",
] }
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = [
Expand Down
2 changes: 1 addition & 1 deletion token-collection/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test-sbf = []

[dependencies]
solana-program = "2.1.0"
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }
spl-program-error = { version = "0.5.0" , path = "../../libraries/program-error" }
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-example = { version = "0.2", path = "../../token-group/example", features = ["no-entrypoint"] }
Expand Down
2 changes: 1 addition & 1 deletion token-group/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ test-sbf = []

[dependencies]
solana-program = "2.1.0"
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-group-interface = { version = "0.4.2", path = "../interface" }
spl-type-length-value = { version = "0.6.0", path = "../../libraries/type-length-value" }
Expand Down
2 changes: 1 addition & 1 deletion token-group/interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ solana-msg = "2.1.0"
solana-program-error = "2.1.0"
solana-pubkey = "2.1.0"
spl-discriminator = { version = "0.3.0" , path = "../../libraries/discriminator" }
spl-pod = { version = "0.4.0", path = "../../libraries/pod", features = ["borsh"] }
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = ["borsh"] }
thiserror = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion token-metadata/example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ solana-program = "2.1.0"
spl-token-2022 = { version = "5.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
spl-token-metadata-interface = { version = "0.5.1", path = "../interface" }
spl-type-length-value = { version = "0.6.0", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }

[dev-dependencies]
solana-program-test = "2.1.0"
Expand Down
2 changes: 1 addition & 1 deletion token-metadata/interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ solana-program-error = "2.1.0"
spl-discriminator = { version = "0.3.0", path = "../../libraries/discriminator" }
solana-pubkey = "2.1.0"
spl-type-length-value = { version = "0.6.0", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.4.0", path = "../../libraries/pod", features = [
spl-pod = { version = "0.5.0", path = "../../libraries/pod", features = [
"borsh",
] }
thiserror = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion token/confidential-transfer/elgamal-registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test-sbf = []
bytemuck = { version = "1.18.0", features = ["derive"] }
solana-program = "2.1.0"
solana-zk-sdk = "2.1.0"
spl-pod = { version = "0.4.0", path = "../../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../../libraries/pod" }
spl-token-confidential-transfer-proof-extraction = { version = "0.1.0", path = "../proof-extraction" }

[lib]
Expand Down
2 changes: 1 addition & 1 deletion token/confidential-transfer/proof-extraction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bytemuck = "1.19.0"
solana-curve25519 = "2.1.0"
solana-program = "2.1.0"
solana-zk-sdk = "2.1.0"
spl-pod = { version = "0.4.0", path = "../../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../../libraries/pod" }
thiserror = "1.0.65"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion token/program-2022-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spl-elgamal-registry = { version = "0.1.0", path = "../confidential-transfer/elg
spl-memo = { version = "5.0.0", path = "../../memo/program", features = [
"no-entrypoint",
] }
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }
spl-record = { version = "0.2.1", path = "../../record/program", features = [
"no-entrypoint",
]}
Expand Down
2 changes: 1 addition & 1 deletion token/program-2022/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spl-token-group-interface = { version = "0.4.2", path = "../../token-group/inter
spl-token-metadata-interface = { version = "0.5.1", path = "../../token-metadata/interface" }
spl-transfer-hook-interface = { version = "0.8.2", path = "../transfer-hook/interface" }
spl-type-length-value = { version = "0.6.0", path = "../../libraries/type-length-value" }
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../libraries/pod" }
thiserror = "1.0"
serde = { version = "1.0.214", optional = true }
serde_with = { version = "3.11.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion token/transfer-hook/interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spl-discriminator = { version = "0.3.0" , path = "../../../libraries/discriminat
spl-program-error = { version = "0.5.0" , path = "../../../libraries/program-error" }
spl-tlv-account-resolution = { version = "0.8.1", path = "../../../libraries/tlv-account-resolution" }
spl-type-length-value = { version = "0.6.0", path = "../../../libraries/type-length-value" }
spl-pod = { version = "0.4.0", path = "../../../libraries/pod" }
spl-pod = { version = "0.5.0", path = "../../../libraries/pod" }

[lib]
crate-type = ["cdylib", "lib"]
Expand Down

0 comments on commit ce56586

Please sign in to comment.