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

Commit 15ebdb6

Browse files
author
Joe C
authored
transfer hook: bump (#5970)
1 parent 68708f4 commit 15ebdb6

File tree

7 files changed

+28
-28
lines changed

7 files changed

+28
-28
lines changed

Cargo.lock

+20-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

token/client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ spl-token = { version = "4.0", path="../program", features = [ "no-entrypoint" ]
2626
spl-token-2022 = { version = "1.0", path="../program-2022" }
2727
spl-token-group-interface = { version = "0.1", path="../../token-group/interface" }
2828
spl-token-metadata-interface = { version = "0.2", path="../../token-metadata/interface" }
29-
spl-transfer-hook-interface = { version = "0.3", path="../transfer-hook/interface" }
29+
spl-transfer-hook-interface = { version = "0.4", path="../transfer-hook/interface" }
3030
thiserror = "1.0"
3131

3232
[features]

token/program-2022-test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@ spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/p
3030
spl-token-client = { version = "0.8", path = "../client" }
3131
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
3232
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
33-
spl-transfer-hook-example = { version = "0.3", path="../transfer-hook/example", features = ["no-entrypoint"] }
34-
spl-transfer-hook-interface = { version = "0.3", path="../transfer-hook/interface" }
33+
spl-transfer-hook-example = { version = "0.4", path="../transfer-hook/example", features = ["no-entrypoint"] }
34+
spl-transfer-hook-interface = { version = "0.4", path="../transfer-hook/interface" }
3535
test-case = "3.3"

token/program-2022/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spl-memo = { version = "4.0.0", path = "../../memo/program", features = [ "no-en
3131
spl-token = { version = "4.0", path = "../program", features = ["no-entrypoint"] }
3232
spl-token-group-interface = { version = "0.1.0", path = "../../token-group/interface" }
3333
spl-token-metadata-interface = { version = "0.2.0", path = "../../token-metadata/interface" }
34-
spl-transfer-hook-interface = { version = "0.3.0", path = "../transfer-hook/interface" }
34+
spl-transfer-hook-interface = { version = "0.4.0", path = "../transfer-hook/interface" }
3535
spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length-value" }
3636
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
3737
thiserror = "1.0"

token/transfer-hook/cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ solana-client = "=1.17.6"
1717
solana-logger = "=1.17.6"
1818
solana-remote-wallet = "=1.17.6"
1919
solana-sdk = "=1.17.6"
20-
spl-transfer-hook-interface = { version = "0.3", path = "../interface" }
20+
spl-transfer-hook-interface = { version = "0.4", path = "../interface" }
2121
spl-tlv-account-resolution = { version = "0.4" , path = "../../../libraries/tlv-account-resolution" }
2222
strum = "0.25"
2323
strum_macros = "0.25"

token/transfer-hook/example/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-transfer-hook-example"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Solana Program Library Transfer Hook Example Program"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -16,7 +16,7 @@ arrayref = "0.3.7"
1616
solana-program = "1.17.6"
1717
spl-tlv-account-resolution = { version = "0.4" , path = "../../../libraries/tlv-account-resolution" }
1818
spl-token-2022 = { version = "1.0", path = "../../program-2022", features = ["no-entrypoint"] }
19-
spl-transfer-hook-interface = { version = "0.3" , path = "../interface" }
19+
spl-transfer-hook-interface = { version = "0.4" , path = "../interface" }
2020
spl-type-length-value = { version = "0.3" , path = "../../../libraries/type-length-value" }
2121

2222
[dev-dependencies]

token/transfer-hook/interface/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-transfer-hook-interface"
3-
version = "0.3.0"
3+
version = "0.4.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)