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

Commit 3c4267b

Browse files
committed
token-2022: bump version to 0.5
1 parent dc18878 commit 3c4267b

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

Cargo.lock

Lines changed: 9 additions & 9 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
@@ -16,4 +16,4 @@ solana-program-test = "1.14.6"
1616
solana-sdk = "1.14.6"
1717
spl-associated-token-account = { version = "1.1", path = "../program", features = ["no-entrypoint"] }
1818
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
19-
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.5", 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
@@ -18,7 +18,7 @@ num-derive = "0.3"
1818
num-traits = "0.2"
1919
solana-program = "1.14.6"
2020
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
21-
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = ["no-entrypoint"] }
21+
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
2222
thiserror = "1.0"
2323

2424
[lib]

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 = "1.14.6"
2121
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
2222
spl-token = { version = "3.5", path = "../../token/program", features = [ "no-entrypoint" ] }
23-
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
23+
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2424
thiserror = "1.0"
2525
arbitrary = { version = "1.0", features = ["derive"], optional = true }
2626
roots = { version = "0.0.7", 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 = "1.14.6"
2121
solana-sdk = "1.14.6"
2222
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
2323
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
24-
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = ["no-entrypoint"] }
24+
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
2525
spl-token-client = { version = "0.2.1", 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.3"
1616
num-traits = "0.2"
1717
num_enum = "0.5.4"
1818
solana-program = "1.14.6"
19-
spl-token-2022 = { version = "0.4", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
2020
thiserror = "1.0"
2121

2222
[dev-dependencies]

token/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ solana-remote-wallet = "=1.14.6"
2828
solana-sdk = "=1.14.6"
2929
solana-transaction-status = "=1.14.6"
3030
spl-token = { version = "3.5", path="../program", features = [ "no-entrypoint" ] }
31-
spl-token-2022 = { version = "0.4", path="../program-2022", features = [ "no-entrypoint" ] }
31+
spl-token-2022 = { version = "0.5", path="../program-2022", features = [ "no-entrypoint" ] }
3232
spl-token-client = { version = "0.2.1", path="../client" }
3333
spl-associated-token-account = { version = "1.1", path="../../associated-token-account/program", features = [ "no-entrypoint" ] }
3434
spl-memo = { version = "3.0.1", path="../../memo/program", features = ["no-entrypoint"] }

token/client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ solana-sdk = "=1.14.6"
1818
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
1919
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
2020
spl-token = { version = "3.5", path="../program", features = [ "no-entrypoint" ] }
21-
spl-token-2022 = { version = "0.4", path="../program-2022" }
21+
spl-token-2022 = { version = "0.5", path="../program-2022" }
2222
thiserror = "1.0"
2323

2424
[features]

token/program-2022-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ solana-program-test = "=1.14.6"
2121
solana-sdk = "=1.14.6"
2222
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program" }
2323
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
24-
spl-token-2022 = { version = "0.4", path="../program-2022", features = ["no-entrypoint"] }
24+
spl-token-2022 = { version = "0.5", path="../program-2022", features = ["no-entrypoint"] }
2525
spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/program", features = ["no-entrypoint"] }
2626
spl-token-client = { version = "0.2.1", path = "../client" }

token/program-2022/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-token-2022"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
description = "Solana Program Library Token 2022"
55
authors = ["Solana Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

0 commit comments

Comments
 (0)