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

Commit f33d98d

Browse files
Publish token-2022 v5.0.1
1 parent 21db2c4 commit f33d98d

File tree

17 files changed

+32
-32
lines changed

17 files changed

+32
-32
lines changed

Cargo.lock

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

associated-token-account/program-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ solana-sdk = "2.0.3"
1717
spl-associated-token-account = { version = "4.0.0", path = "../program", features = ["no-entrypoint"] }
1818
spl-associated-token-account-client = { version = "1.0.0", path = "../client" }
1919
spl-token = { version = "6.0", path = "../../token/program", features = ["no-entrypoint"] }
20-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
20+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = ["no-entrypoint"] }

associated-token-account/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spl-associated-token-account-client = { version = "1.0.0", path = "../client" }
2020
spl-token = { version = "6.0", path = "../../token/program", features = [
2121
"no-entrypoint",
2222
] }
23-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = [
23+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = [
2424
"no-entrypoint",
2525
] }
2626
thiserror = "1.0"

stake-pool/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spl-math = { version = "0.2", path = "../../libraries/math", features = [
2828
spl-pod = { version = "0.4.0", path = "../../libraries/pod", features = [
2929
"borsh",
3030
] }
31-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = [
31+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = [
3232
"no-entrypoint",
3333
] }
3434
thiserror = "1.0"

token-collection/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ test-sbf = []
1515
solana-program = "2.0.3"
1616
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
1717
spl-program-error = { version = "0.5.0" , path = "../../libraries/program-error" }
18-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
18+
spl-token-2022 = { version = "5.0.1", 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.4.1", path = "../../token-group/interface" }
2121
spl-token-metadata-interface = { version = "0.5.0", path = "../../token-metadata/interface" }

token-group/example/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 = "2.0.3"
1616
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }
17-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
17+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = ["no-entrypoint"] }
1818
spl-token-group-interface = { version = "0.4.1", path = "../interface" }
1919
spl-type-length-value = { version = "0.5.0", path = "../../libraries/type-length-value" }
2020

token-metadata/example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ test-sbf = []
1313

1414
[dependencies]
1515
solana-program = "2.0.3"
16-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
16+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = ["no-entrypoint"] }
1717
spl-token-metadata-interface = { version = "0.5.0", path = "../interface" }
1818
spl-type-length-value = { version = "0.5.0" , path = "../../libraries/type-length-value" }
1919
spl-pod = { version = "0.4.0", path = "../../libraries/pod" }

token-swap/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ num-traits = "0.2"
2020
solana-program = "2.0.3"
2121
spl-math = { version = "0.2", path = "../../libraries/math", features = [ "no-entrypoint" ] }
2222
spl-token = { version = "6.0", path = "../../token/program", features = [ "no-entrypoint" ] }
23-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
23+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2424
thiserror = "1.0"
2525
arbitrary = { version = "1.3", features = ["derive"], optional = true }
2626
roots = { version = "0.0.8", optional = true }

token-upgrade/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ solana-remote-wallet = "2.0.3"
2121
solana-sdk = "2.0.3"
2222
spl-associated-token-account-client = { version = "1.0.0", path = "../../associated-token-account/client" }
2323
spl-token = { version = "6.0", path = "../../token/program", features = ["no-entrypoint"] }
24-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
24+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = ["no-entrypoint"] }
2525
spl-token-client = { version = "0.11.0", path = "../../token/client" }
2626
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
2727
tokio = { version = "1", features = ["full"] }

token-upgrade/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ num-derive = "0.4"
1616
num-traits = "0.2"
1717
num_enum = "0.7.3"
1818
solana-program = "2.0.3"
19-
spl-token-2022 = { version = "5.0.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "5.0.1", path = "../../token/program-2022", features = ["no-entrypoint"] }
2020
thiserror = "1.0"
2121

2222
[dev-dependencies]

0 commit comments

Comments
 (0)