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

Commit c9a6cdf

Browse files
committed
transfer-hook-interface: Bump to 0.6.0
1 parent ef9aad1 commit c9a6cdf

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

Cargo.lock

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

token/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spl-token = { version = "4.0", path = "../program", features = [
3232
spl-token-2022 = { version = "3.0", path = "../program-2022" }
3333
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
3434
spl-token-metadata-interface = { version = "0.3", path = "../../token-metadata/interface" }
35-
spl-transfer-hook-interface = { version = "0.5", path = "../transfer-hook/interface" }
35+
spl-transfer-hook-interface = { version = "0.6", path = "../transfer-hook/interface" }
3636
thiserror = "1.0"
3737

3838
[features]

token/program-2022-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ spl-token-metadata-interface = { version = "0.3", path = "../../token-metadata/i
4040
spl-transfer-hook-example = { version = "0.5", path = "../transfer-hook/example", features = [
4141
"no-entrypoint",
4242
] }
43-
spl-transfer-hook-interface = { version = "0.5", path = "../transfer-hook/interface" }
43+
spl-transfer-hook-interface = { version = "0.6", path = "../transfer-hook/interface" }
4444
test-case = "3.3"

token/program-2022/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spl-memo = { version = "4.0", path = "../../memo/program", features = [ "no-entr
3333
spl-token = { version = "4.0", path = "../program", features = ["no-entrypoint"] }
3434
spl-token-group-interface = { version = "0.2", path = "../../token-group/interface" }
3535
spl-token-metadata-interface = { version = "0.3", path = "../../token-metadata/interface" }
36-
spl-transfer-hook-interface = { version = "0.5.1", path = "../transfer-hook/interface" }
36+
spl-transfer-hook-interface = { version = "0.6", path = "../transfer-hook/interface" }
3737
spl-type-length-value = { version = "0.4", path = "../../libraries/type-length-value" }
3838
spl-pod = { version = "0.2", path = "../../libraries/pod" }
3939
thiserror = "1.0"

token/transfer-hook/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ solana-client = ">=1.18.2,<=2"
1717
solana-logger = ">=1.18.2,<=2"
1818
solana-remote-wallet = ">=1.18.2,<=2"
1919
solana-sdk = ">=1.18.2,<=2"
20-
spl-transfer-hook-interface = { version = "0.5", path = "../interface" }
20+
spl-transfer-hook-interface = { version = "0.6", path = "../interface" }
2121
spl-tlv-account-resolution = { version = "0.6" , path = "../../../libraries/tlv-account-resolution", features = ["serde-traits"] }
2222
strum = "0.26"
2323
strum_macros = "0.26"

token/transfer-hook/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ arrayref = "0.3.7"
1616
solana-program = ">=1.18.2,<=2"
1717
spl-tlv-account-resolution = { version = "0.6" , path = "../../../libraries/tlv-account-resolution" }
1818
spl-token-2022 = { version = "3.0", path = "../../program-2022", features = ["no-entrypoint"] }
19-
spl-transfer-hook-interface = { version = "0.5" , path = "../interface" }
19+
spl-transfer-hook-interface = { version = "0.6" , path = "../interface" }
2020
spl-type-length-value = { version = "0.4" , path = "../../../libraries/type-length-value" }
2121

2222
[dev-dependencies]

token/transfer-hook/interface/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-transfer-hook-interface"
3-
version = "0.5.1"
3+
version = "0.6.0"
44
description = "Solana Program Library Transfer Hook Interface"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

0 commit comments

Comments
 (0)