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

Commit f35dc5f

Browse files
authored
release: Bump token-2022 and all dependencies (#5189)
* release: Bump token-2022 and all dependencies In order to release a new token-2022, we need to bump its version and every local crate that it depends on. That means the following: * spl-token-2022 * spl-program-error * spl-tlv-account-resolution * spl-type-length-value * spl-token-metadata-interface * spl-token-metadata-example * spl-transfer-hook-interface * spl-transfer-hook-example * spl-token-client (this one's not needed, but it's cleaner) * Also bump spl-token-cli * Also bump associated-token-account
1 parent cfaabb5 commit f35dc5f

File tree

24 files changed

+101
-101
lines changed

24 files changed

+101
-101
lines changed

Cargo.lock

Lines changed: 35 additions & 35 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.16.3"
1515
solana-program-test = "1.16.3"
1616
solana-sdk = "1.16.3"
17-
spl-associated-token-account = { version = "2.0", path = "../program", features = ["no-entrypoint"] }
17+
spl-associated-token-account = { version = "2", path = "../program", features = ["no-entrypoint"] }
1818
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
19-
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }
19+
spl-token-2022 = { version = "0.8", 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 = "2.0.0"
3+
version = "2.1.0"
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"
@@ -18,7 +18,7 @@ num-derive = "0.4"
1818
num-traits = "0.2"
1919
solana-program = "1.16.3"
2020
spl-token = { version = "4.0", path = "../../token/program", features = ["no-entrypoint"] }
21-
spl-token-2022 = { version = "0.7", path = "../../token/program-2022", features = ["no-entrypoint"] }
21+
spl-token-2022 = { version = "0.8", path = "../../token/program-2022", features = ["no-entrypoint"] }
2222
thiserror = "1.0"
2323

2424
[lib]

libraries/pod/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ bytemuck = { version = "1.13.1" }
1818
serde = { version = "1.0.183", optional = true }
1919
solana-program = "1.16.3"
2020
solana-zk-token-sdk = "1.16.3"
21-
spl-program-error = { version = "0.2.0", path = "../program-error" }
21+
spl-program-error = { version = "0.3", path = "../program-error" }
2222

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

libraries/program-error/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-program-error"
3-
version = "0.2.0"
3+
version = "0.3.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.16.3"
14-
spl-program-error-derive = { version = "0.2.0", path = "./derive" }
14+
spl-program-error-derive = { version = "0.3.0", path = "./derive" }
1515
thiserror = "1.0"
1616

1717
[dev-dependencies]
@@ -23,4 +23,4 @@ solana-sdk = "1.16.3"
2323
crate-type = ["cdylib", "lib"]
2424

2525
[package.metadata.docs.rs]
26-
targets = ["x86_64-unknown-linux-gnu"]
26+
targets = ["x86_64-unknown-linux-gnu"]

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.2.0"
3+
version = "0.3.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"

libraries/tlv-account-resolution/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-tlv-account-resolution"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Solana Program Library TLV Account Resolution Interface"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -14,9 +14,9 @@ test-sbf = []
1414
bytemuck = { version = "1.13.1", features = ["derive"] }
1515
solana-program = "1.16.3"
1616
spl-discriminator = { version = "0.1", path = "../discriminator" }
17-
spl-program-error = { version = "0.2.0", path = "../program-error" }
18-
spl-type-length-value = { version = "0.2", path = "../type-length-value" }
19-
spl-pod = { version = "0.1.0", path = "../pod" }
17+
spl-program-error = { version = "0.3", path = "../program-error" }
18+
spl-type-length-value = { version = "0.3", path = "../type-length-value" }
19+
spl-pod = { version = "0.1", path = "../pod" }
2020

2121
[dev-dependencies]
2222
solana-program-test = "1.16.3"

libraries/type-length-value-derive-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ edition = "2021"
1111
borsh = "0.10"
1212
solana-program = "1.16"
1313
spl-discriminator = { version = "0.1.0", path = "../discriminator" }
14-
spl-type-length-value = { version = "0.2.0", path = "../type-length-value", features = ["derive"] }
14+
spl-type-length-value = { version = "0.3.0", path = "../type-length-value", features = ["derive"] }

libraries/type-length-value/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spl-type-length-value"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "Solana Program Library Type-Length-Value Management"
55
authors = ["Solana Labs Maintainers <[email protected]>"]
66
repository = "https://github.com/solana-labs/solana-program-library"
@@ -14,10 +14,10 @@ derive = ["dep:spl-type-length-value-derive"]
1414
[dependencies]
1515
bytemuck = { version = "1.13.1", features = ["derive"] }
1616
solana-program = "1.16.3"
17-
spl-discriminator = { version = "0.1.0", path = "../discriminator" }
18-
spl-program-error = { version = "0.2.0", path = "../program-error" }
19-
spl-type-length-value-derive = { version = "0.1.0", path = "./derive", optional = true }
20-
spl-pod = { version = "0.1.0", path = "../pod" }
17+
spl-discriminator = { version = "0.1", path = "../discriminator" }
18+
spl-program-error = { version = "0.3", path = "../program-error" }
19+
spl-type-length-value-derive = { version = "0.1", path = "./derive", optional = true }
20+
spl-pod = { version = "0.1", path = "../pod" }
2121

2222
[lib]
2323
crate-type = ["cdylib", "lib"]

0 commit comments

Comments
 (0)