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

Commit eb8570f

Browse files
author
Joe C
authored
bump/type-length-value (#4608)
1 parent 54ed051 commit eb8570f

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libraries/tlv-account-resolution/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ test-sbf = []
1414
bytemuck = { version = "1.13.1", features = ["derive"] }
1515
solana-program = "1.16.1"
1616
spl-discriminator = { version = "0.1", path = "../discriminator" }
17-
spl-program-error = { version = "0.1.0", path = "../program-error" }
18-
spl-type-length-value = { version = "0.1", path = "../type-length-value" }
17+
spl-program-error = { version = "0.2.0", path = "../program-error" }
18+
spl-type-length-value = { version = "0.2", path = "../type-length-value" }
1919

2020
[dev-dependencies]
2121
solana-program-test = "1.16.1"

libraries/type-length-value/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-type-length-value"
3-
version = "0.1.0"
3+
version = "0.2.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"
@@ -16,7 +16,7 @@ borsh = { version = "0.10", optional = true }
1616
bytemuck = { version = "1.13.1", features = ["derive"] }
1717
solana-program = "1.16.1"
1818
spl-discriminator = { version = "0.1.0", path = "../discriminator" }
19-
spl-program-error = { version = "0.1.0", path = "../program-error" }
19+
spl-program-error = { version = "0.2.0", path = "../program-error" }
2020

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

token-metadata/example/Cargo.toml

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

1414
[dependencies]
1515
solana-program = "1.16.1"
16-
spl-type-length-value = { version = "0.1.0" , path = "../../libraries/type-length-value", features = ["borsh"] }
1716
spl-token-2022 = { version = "0.6.0", path = "../../token/program-2022" }
1817
spl-token-metadata-interface = { version = "0.1.0", path = "../interface" }
18+
spl-type-length-value = { version = "0.2.0" , path = "../../libraries/type-length-value", features = ["borsh"] }
1919

2020
[dev-dependencies]
2121
solana-program-test = "1.16.1"

token-metadata/interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ borsh = "0.10"
1212
solana-program = "1.16.1"
1313
spl-discriminator = { version = "0.1.0" , path = "../../libraries/discriminator" }
1414
spl-program-error = { version = "0.2.0" , path = "../../libraries/program-error" }
15-
spl-type-length-value = { version = "0.1.0", features = ["borsh"], path = "../../libraries/type-length-value" }
15+
spl-type-length-value = { version = "0.2.0", features = ["borsh"], path = "../../libraries/type-length-value" }
1616

1717
[lib]
1818
crate-type = ["cdylib", "lib"]

token/transfer-hook-example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ solana-program = "1.16.1"
1717
spl-tlv-account-resolution = { version = "0.1.0" , path = "../../libraries/tlv-account-resolution" }
1818
spl-token-2022 = { version = "0.6", path = "../program-2022", features = ["no-entrypoint"] }
1919
spl-transfer-hook-interface = { version = "0.1.0" , path = "../transfer-hook-interface" }
20-
spl-type-length-value = { version = "0.1.0" , path = "../../libraries/type-length-value" }
20+
spl-type-length-value = { version = "0.2.0" , path = "../../libraries/type-length-value" }
2121

2222
[dev-dependencies]
2323
solana-program-test = "1.16.1"

token/transfer-hook-interface/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ num_enum = "0.6.1"
1616
solana-program = "1.16.1"
1717
spl-discriminator = { version = "0.1.0" , path = "../../libraries/discriminator" }
1818
spl-tlv-account-resolution = { version = "0.1.0" , path = "../../libraries/tlv-account-resolution" }
19-
spl-type-length-value = { version = "0.1.0" , path = "../../libraries/type-length-value" }
19+
spl-type-length-value = { version = "0.2.0" , path = "../../libraries/type-length-value" }
2020
thiserror = "1.0"
2121

2222
[lib]

0 commit comments

Comments
 (0)