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

Commit 8657dc3

Browse files
author
Joe C
authored
Transfer hook: bump versions (#6119)
* transfer hook: bump interface * transfer hook: bump cli
1 parent 0af879a commit 8657dc3

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Cargo.lock

Lines changed: 7 additions & 7 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
@@ -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.4", path="../transfer-hook/interface" }
29+
spl-transfer-hook-interface = { version = "0.5", path="../transfer-hook/interface" }
3030
thiserror = "1.0"
3131

3232
[features]

token/program-2022-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ spl-token-client = { version = "0.8", path = "../client" }
3232
spl-token-group-interface = { version = "0.1", path = "../../token-group/interface" }
3333
spl-token-metadata-interface = { version = "0.2", path = "../../token-metadata/interface" }
3434
spl-transfer-hook-example = { version = "0.4", path="../transfer-hook/example", features = ["no-entrypoint"] }
35-
spl-transfer-hook-interface = { version = "0.4", path="../transfer-hook/interface" }
35+
spl-transfer-hook-interface = { version = "0.5", path="../transfer-hook/interface" }
3636
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.0", path = "../../memo/program", features = [ "no-en
3333
spl-token = { version = "4.0", path = "../program", features = ["no-entrypoint"] }
3434
spl-token-group-interface = { version = "0.1.0", path = "../../token-group/interface" }
3535
spl-token-metadata-interface = { version = "0.2.0", path = "../../token-metadata/interface" }
36-
spl-transfer-hook-interface = { version = "0.4.0", path = "../transfer-hook/interface" }
36+
spl-transfer-hook-interface = { version = "0.5.0", path = "../transfer-hook/interface" }
3737
spl-type-length-value = { version = "0.3.0", path = "../../libraries/type-length-value" }
3838
spl-pod = { version = "0.1.0", path = "../../libraries/pod" }
3939
thiserror = "1.0"

token/transfer-hook/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ homepage = "https://spl.solana.com/token"
66
license = "Apache-2.0"
77
name = "spl-transfer-hook-cli"
88
repository = "https://github.com/solana-labs/solana-program-library"
9-
version = "0.1.0"
9+
version = "0.1.1"
1010

1111
[dependencies]
1212
clap = { version = "3", features = ["cargo"] }
@@ -17,7 +17,7 @@ solana-client = "=1.17.13"
1717
solana-logger = "=1.17.13"
1818
solana-remote-wallet = "=1.17.13"
1919
solana-sdk = "=1.17.13"
20-
spl-transfer-hook-interface = { version = "0.4", path = "../interface" }
20+
spl-transfer-hook-interface = { version = "0.5", path = "../interface" }
2121
spl-tlv-account-resolution = { version = "0.5.1" , path = "../../../libraries/tlv-account-resolution", features = ["serde-traits"] }
2222
strum = "0.25"
2323
strum_macros = "0.25"

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.17.13"
1717
spl-tlv-account-resolution = { version = "0.5" , 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.4" , path = "../interface" }
19+
spl-transfer-hook-interface = { version = "0.5" , 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

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.4.1"
3+
version = "0.5.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)