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

Commit 8c8e7de

Browse files
authored
Bump all crates for token-cli release (#6516)
* Bump pod to 0.2.2 * Bump program-error and derive to 0.4.0 * Bump type-length-value to 0.4.3 * Bump tlv-account-resolution to 0.6.3 * Bump token-group-interface to 0.2.3 * Bump token-metadata-interface to 0.3.3 * Bump token-2022 to 3.0.2 * Bump transfer-hook-interface to 0.6.3 * Bump token-client to 0.9.2 * Bump associated-token-account to 3.0.2 * Bump discriminator, derive, and syn to 0.2.x
1 parent b6f04df commit 8c8e7de

File tree

36 files changed

+217
-217
lines changed

36 files changed

+217
-217
lines changed

Cargo.lock

Lines changed: 104 additions & 104 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ test-sbf = []
1414
solana-program = ">=1.18.2,<=2"
1515
solana-program-test = ">=1.18.2,<=2"
1616
solana-sdk = ">=1.18.2,<=2"
17-
spl-associated-token-account = { version = "3.0", path = "../program", features = ["no-entrypoint"] }
17+
spl-associated-token-account = { version = "3.0.2", path = "../program", features = ["no-entrypoint"] }
1818
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
19-
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = ["no-entrypoint"] }

associated-token-account/program/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-associated-token-account"
3-
version = "3.0.0"
3+
version = "3.0.2"
44
description = "Solana Program Library Associated Token Account"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -20,7 +20,7 @@ solana-program = ">=1.18.2,<=2"
2020
spl-token = { version = "4.0", path = "../../token/program", features = [
2121
"no-entrypoint",
2222
] }
23-
spl-token-2022 = { version = "3.0", path = "../../token/program-2022", features = [
23+
spl-token-2022 = { version = "3.0.2", path = "../../token/program-2022", features = [
2424
"no-entrypoint",
2525
] }
2626
thiserror = "1.0"

feature-gate/program/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
num_enum = "0.7.2"
1616
solana-program = ">=1.18.2,<=2"
17-
spl-program-error = { version = "0.3.1", path = "../../libraries/program-error" }
17+
spl-program-error = { version = "0.4.0", path = "../../libraries/program-error" }
1818

1919
[dev-dependencies]
2020
solana-program-test = ">=1.18.2,<=2"

libraries/discriminator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-discriminator"
3-
version = "0.2.0"
3+
version = "0.2.2"
44
description = "Solana Program Library 8-Byte Discriminator Management"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -14,7 +14,7 @@ borsh = ["dep:borsh"]
1414
borsh = { version = "1", optional = true }
1515
bytemuck = { version = "1.15.0", features = ["derive"] }
1616
solana-program = ">=1.18.2,<=2"
17-
spl-discriminator-derive = { version = "0.1.2", path = "./derive" }
17+
spl-discriminator-derive = { version = "0.2.0", path = "./derive" }
1818

1919
[lib]
2020
crate-type = ["cdylib", "lib"]

libraries/discriminator/derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-discriminator-derive"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Derive macro library for the `spl-discriminator` library"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -9,7 +9,7 @@ edition = "2021"
99

1010
[dependencies]
1111
quote = "1.0"
12-
spl-discriminator-syn = { version = "0.1.2", path = "../syn" }
12+
spl-discriminator-syn = { version = "0.2.0", path = "../syn" }
1313
syn = { version = "2.0", features = ["full"] }
1414

1515
[lib]

libraries/discriminator/syn/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-discriminator-syn"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Token parsing and generating library for the `spl-discriminator` library"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

libraries/pod/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-pod"
3-
version = "0.2.0"
3+
version = "0.2.2"
44
description = "Solana Program Library Plain Old Data (Pod)"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -18,7 +18,7 @@ bytemuck = { version = "1.15.0" }
1818
serde = { version = "1.0.197", optional = true }
1919
solana-program = ">=1.18.2,<=2"
2020
solana-zk-token-sdk = ">=1.18.2,<=2"
21-
spl-program-error = { version = "0.3", path = "../program-error" }
21+
spl-program-error = { version = "0.4.0", path = "../program-error" }
2222

2323
[dev-dependencies]
2424
serde_json = "1.0.115"

libraries/program-error/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-program-error"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
description = "Library for Solana Program error attributes and derive macro for creating them"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -11,7 +11,7 @@ edition = "2021"
1111
num-derive = "0.4"
1212
num-traits = "0.2"
1313
solana-program = ">=1.18.2,<=2"
14-
spl-program-error-derive = { version = "0.3.2", path = "./derive" }
14+
spl-program-error-derive = { version = "0.4.0", path = "./derive" }
1515
thiserror = "1.0"
1616

1717
[dev-dependencies]

libraries/program-error/derive/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-program-error-derive"
3-
version = "0.3.2"
3+
version = "0.4.0"
44
description = "Proc-Macro Library for Solana Program error attributes and derive macro"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"

0 commit comments

Comments
 (0)