From 1b369e1cf70db2d28ddb19a47b604c2a87ce5608 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Thu, 10 Feb 2022 15:41:07 -0800 Subject: [PATCH] Bump spl-token-2022 version to 0.2.0 --- Cargo.lock | 2 +- associated-token-account/program/Cargo.toml | 2 +- token/program-2022-test/Cargo.toml | 2 +- token/program-2022/Cargo.toml | 2 +- token/rust/Cargo.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f6ad2bdd..7fdcdbdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3890,7 +3890,7 @@ dependencies = [ [[package]] name = "spl-token-2022" -version = "0.1.0" +version = "0.2.0" dependencies = [ "arrayref", "bytemuck", diff --git a/associated-token-account/program/Cargo.toml b/associated-token-account/program/Cargo.toml index db45cbf8..1e9c6295 100644 --- a/associated-token-account/program/Cargo.toml +++ b/associated-token-account/program/Cargo.toml @@ -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] diff --git a/token/program-2022-test/Cargo.toml b/token/program-2022-test/Cargo.toml index 0889827c..8751a809 100644 --- a/token/program-2022-test/Cargo.toml +++ b/token/program-2022-test/Cargo.toml @@ -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" } diff --git a/token/program-2022/Cargo.toml b/token/program-2022/Cargo.toml index 9e0ac9f5..387ad058 100644 --- a/token/program-2022/Cargo.toml +++ b/token/program-2022/Cargo.toml @@ -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 "] repository = "https://github.com/solana-labs/solana-program-library" diff --git a/token/rust/Cargo.toml b/token/rust/Cargo.toml index b2057e4d..71945703 100644 --- a/token/rust/Cargo.toml +++ b/token/rust/Cargo.toml @@ -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"