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

Commit 588d88f

Browse files
committed
program error: bump patch version
1 parent 003ec2a commit 588d88f

File tree

11 files changed

+22
-22
lines changed

11 files changed

+22
-22
lines changed

Cargo.lock

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

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.18.2,<=2"
17-
spl-program-error = { version = "0.4.0", path = "../../libraries/program-error" }
17+
spl-program-error = { version = "0.4.1", path = "../../libraries/program-error" }
1818

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

libraries/pod/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bytemuck = { version = "1.15.0" }
1818
serde = { version = "1.0.198", optional = true }
1919
solana-program = ">=1.18.2,<=2"
2020
solana-zk-token-sdk = ">=1.18.2,<=2"
21-
spl-program-error = { version = "0.4.0", path = "../program-error" }
21+
spl-program-error = { version = "0.4.1", path = "../program-error" }
2222

2323
[dev-dependencies]
2424
serde_json = "1.0.116"

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.4.0"
3+
version = "0.4.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.18.2,<=2"
14-
spl-program-error-derive = { version = "0.4.0", path = "./derive" }
14+
spl-program-error-derive = { version = "0.4.1", 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.4.0"
3+
version = "0.4.1"
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"

libraries/tlv-account-resolution/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bytemuck = { version = "1.15.0", features = ["derive"] }
1616
serde = { version = "1.0.198", optional = true }
1717
solana-program = ">=1.18.2,<=2"
1818
spl-discriminator = { version = "0.2.2", path = "../discriminator" }
19-
spl-program-error = { version = "0.4.0", path = "../program-error" }
19+
spl-program-error = { version = "0.4.1", path = "../program-error" }
2020
spl-type-length-value = { version = "0.4.3", path = "../type-length-value" }
2121
spl-pod = { version = "0.2.2", path = "../pod" }
2222

libraries/type-length-value/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ derive = ["dep:spl-type-length-value-derive"]
1515
bytemuck = { version = "1.15.0", features = ["derive"] }
1616
solana-program = ">=1.18.2,<=2"
1717
spl-discriminator = { version = "0.2.2", path = "../discriminator" }
18-
spl-program-error = { version = "0.4.0", path = "../program-error" }
18+
spl-program-error = { version = "0.4.1", path = "../program-error" }
1919
spl-type-length-value-derive = { version = "0.1", path = "./derive", optional = true }
2020
spl-pod = { version = "0.2.2", path = "../pod" }
2121

token-collection/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
solana-program = ">=1.18.2,<=2"
1616
spl-pod = { version = "0.2.2", path = "../../libraries/pod" }
17-
spl-program-error = { version = "0.4.0" , path = "../../libraries/program-error" }
17+
spl-program-error = { version = "0.4.1" , path = "../../libraries/program-error" }
1818
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }
1919
spl-token-group-example = { version = "0.2", path = "../../token-group/example", features = ["no-entrypoint"] }
2020
spl-token-group-interface = { version = "0.2.3", path = "../../token-group/interface" }

token-group/interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ bytemuck = "1.15.0"
1212
solana-program = ">=1.18.2,<=2"
1313
spl-discriminator = { version = "0.2.2" , path = "../../libraries/discriminator" }
1414
spl-pod = { version = "0.2.2" , path = "../../libraries/pod", features = ["borsh"] }
15-
spl-program-error = { version = "0.4.0" , path = "../../libraries/program-error" }
15+
spl-program-error = { version = "0.4.1" , path = "../../libraries/program-error" }
1616

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

token-metadata/interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ borsh = "1.4.0"
1515
serde = { version = "1.0.198", optional = true }
1616
solana-program = ">=1.18.2,<=2"
1717
spl-discriminator = { version = "0.2.2", path = "../../libraries/discriminator" }
18-
spl-program-error = { version = "0.4.0", path = "../../libraries/program-error" }
18+
spl-program-error = { version = "0.4.1", path = "../../libraries/program-error" }
1919
spl-type-length-value = { version = "0.4.3", path = "../../libraries/type-length-value" }
2020
spl-pod = { version = "0.2.2", path = "../../libraries/pod", features = [
2121
"borsh",

token/transfer-hook/interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ arrayref = "0.3.7"
1212
bytemuck = { version = "1.15.0", features = ["derive"] }
1313
solana-program = ">=1.18.2,<=2"
1414
spl-discriminator = { version = "0.2.2" , path = "../../../libraries/discriminator" }
15-
spl-program-error = { version = "0.4.0" , path = "../../../libraries/program-error" }
15+
spl-program-error = { version = "0.4.1" , path = "../../../libraries/program-error" }
1616
spl-tlv-account-resolution = { version = "0.6.3" , path = "../../../libraries/tlv-account-resolution" }
1717
spl-type-length-value = { version = "0.4.3" , path = "../../../libraries/type-length-value" }
1818
spl-pod = { version = "0.2.2", path = "../../../libraries/pod" }

0 commit comments

Comments
 (0)