Bump spl-token-2022 version to 0.2.0

This commit is contained in:
Michael Vines 2022-02-10 15:41:07 -08:00
parent 2e968115ab
commit 1b369e1cf7
5 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -3890,7 +3890,7 @@ dependencies = [
[[package]]
name = "spl-token-2022"
version = "0.1.0"
version = "0.2.0"
dependencies = [
"arrayref",
"bytemuck",

View File

@ -17,7 +17,7 @@ borsh = "0.9.1"
num-derive = "0.3"
num-traits = "0.2"
solana-program = "1.9.5"
spl-token = { version = "0.1", path = "../../token/program-2022", package = "spl-token-2022", features = ["no-entrypoint"] }
spl-token = { version = "0.2", path = "../../token/program-2022", package = "spl-token-2022", features = ["no-entrypoint"] }
thiserror = "1.0"
[dev-dependencies]

View File

@ -15,5 +15,5 @@ async-trait = "0.1"
solana-program-test = "=1.9.5"
solana-sdk = "=1.9.5"
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program" }
spl-token-2022 = { version = "0.1", path="../program-2022", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.2", path="../program-2022", features = ["no-entrypoint"] }
spl-token-client = { version = "0.0.1", path = "../rust" }

View File

@ -1,6 +1,6 @@
[package]
name = "spl-token-2022"
version = "0.1.0"
version = "0.2.0"
description = "Solana Program Library Token 2022"
authors = ["Solana Maintainers <maintainers@solana.foundation>"]
repository = "https://github.com/solana-labs/solana-program-library"

View File

@ -15,5 +15,5 @@ solana-sdk = "=1.9.5"
# We never want the entrypoint for ATA, but we want the entrypoint for token when
# testing token
spl-associated-token-account = { version = "1.0.5", path = "../../associated-token-account/program", features = ["no-entrypoint"] }
spl-token-2022 = { version = "0.1", path="../program-2022" }
spl-token-2022 = { version = "0.2", path="../program-2022" }
thiserror = "1.0"