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

Commit d0bd334

Browse files
authored
token-2022: Bump program, cli, and client for release (#4039)
1 parent 25a4a67 commit d0bd334

File tree

11 files changed

+52
-52
lines changed

11 files changed

+52
-52
lines changed

Cargo.lock

Lines changed: 34 additions & 34 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.12"
1616
solana-sdk = "1.14.12"
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.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.6", 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.12"
2020
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
21-
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
21+
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
2222
thiserror = "1.0"
2323

2424
[lib]

stake-pool/program/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ serde = "1.0.130"
2222
serde_derive = "1.0.103"
2323
solana-program = "1.14.12"
2424
spl-math = { version = "0.1", path = "../../libraries/math", features = [ "no-entrypoint" ] }
25-
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
25+
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
2626
thiserror = "1.0"
2727
bincode = "1.3.1"
2828

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.12"
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.5", path = "../../token/program-2022", features = [ "no-entrypoint" ] }
23+
spl-token-2022 = { version = "0.6", 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-token-upgrade-cli"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "SPL Token Upgrade Command-line Utility"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -21,8 +21,8 @@ solana-remote-wallet = "1.14.12"
2121
solana-sdk = "1.14.12"
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.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
25-
spl-token-client = { version = "0.3", path = "../../token/client" }
24+
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
25+
spl-token-client = { version = "0.4", path = "../../token/client" }
2626
spl-token-upgrade = { version = "0.1", path = "../program", features = ["no-entrypoint"] }
2727
tokio = { version = "1", features = ["full"] }
2828

token-upgrade/program/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-token-upgrade"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Solana Program Library Token Upgrade"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -16,14 +16,14 @@ num-derive = "0.3"
1616
num-traits = "0.2"
1717
num_enum = "0.5.9"
1818
solana-program = "1.14.12"
19-
spl-token-2022 = { version = "0.5", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.6", path = "../../token/program-2022", features = ["no-entrypoint"] }
2020
thiserror = "1.0"
2121

2222
[dev-dependencies]
2323
solana-program-test = "1.14.12"
2424
solana-sdk = "1.14.12"
2525
spl-token = { version = "3.5", path = "../../token/program", features = ["no-entrypoint"] }
26-
spl-token-client = { version = "0.3", path = "../../token/client" }
26+
spl-token-client = { version = "0.4", path = "../../token/client" }
2727
test-case = "2.2"
2828

2929
[lib]

token/cli/Cargo.toml

Lines changed: 3 additions & 3 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-token-cli"
88
repository = "https://github.com/solana-labs/solana-program-library"
9-
version = "2.2.0"
9+
version = "2.3.0"
1010

1111
[build-dependencies]
1212
walkdir = "2"
@@ -28,8 +28,8 @@ solana-remote-wallet = "=1.14.12"
2828
solana-sdk = "=1.14.12"
2929
solana-transaction-status = "=1.14.12"
3030
spl-token = { version = "3.5", path="../program", features = [ "no-entrypoint" ] }
31-
spl-token-2022 = { version = "0.5", path="../program-2022", features = [ "no-entrypoint" ] }
32-
spl-token-client = { version = "0.3", path="../client" }
31+
spl-token-2022 = { version = "0.6", path="../program-2022", features = [ "no-entrypoint" ] }
32+
spl-token-client = { version = "0.4", 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"] }
3535
strum = "0.24"

token/client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
license = "Apache-2.0"
66
name = "spl-token-client"
77
repository = "https://github.com/solana-labs/solana-program-library"
8-
version = "0.3.0"
8+
version = "0.4.0"
99

1010
[dependencies]
1111
async-trait = "0.1"
@@ -18,7 +18,7 @@ solana-sdk = "=1.14.12"
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.5", path="../program-2022" }
21+
spl-token-2022 = { version = "0.6", path="../program-2022" }
2222
thiserror = "1.0"
2323

2424
[features]

token/program-2022-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ solana-program-test = "=1.14.12"
2222
solana-sdk = "=1.14.12"
2323
spl-associated-token-account = { version = "1.1", path = "../../associated-token-account/program" }
2424
spl-memo = { version = "3.0.1", path = "../../memo/program", features = ["no-entrypoint"] }
25-
spl-token-2022 = { version = "0.5", path="../program-2022", features = ["no-entrypoint"] }
25+
spl-token-2022 = { version = "0.6", path="../program-2022", features = ["no-entrypoint"] }
2626
spl-instruction-padding = { version = "0.1.0", path="../../instruction-padding/program", features = ["no-entrypoint"] }
27-
spl-token-client = { version = "0.3", path = "../client" }
27+
spl-token-client = { version = "0.4", path = "../client" }

0 commit comments

Comments
 (0)