From 430e10cb6a04e86856bde32976a9ffab804284cc Mon Sep 17 00:00:00 2001 From: Armani Ferrante Date: Tue, 6 Apr 2021 15:49:51 -0700 Subject: [PATCH] v0.4.1 (#152) --- CHANGELOG.md | 2 ++ Cargo.lock | 26 ++++++++++++------------ cli/Cargo.toml | 2 +- cli/src/template.rs | 2 +- client/Cargo.toml | 4 ++-- lang/Cargo.toml | 18 ++++++++-------- lang/attribute/access-control/Cargo.toml | 6 +++--- lang/attribute/account/Cargo.toml | 4 ++-- lang/attribute/error/Cargo.toml | 4 ++-- lang/attribute/event/Cargo.toml | 4 ++-- lang/attribute/interface/Cargo.toml | 4 ++-- lang/attribute/program/Cargo.toml | 4 ++-- lang/attribute/state/Cargo.toml | 4 ++-- lang/derive/accounts/Cargo.toml | 4 ++-- lang/syn/Cargo.toml | 2 +- spl/Cargo.toml | 4 ++-- ts/package.json | 2 +- 17 files changed, 49 insertions(+), 47 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 467573c202..cb40574703 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,8 @@ incremented for features. ## [Unreleased] +## [0.4.1] - 2021-04-06 + * cli: Version verifiable docker builder ([#145](https://github.com/project-serum/anchor/pull/145)). ## [0.4.0] - 2021-04-04 diff --git a/Cargo.lock b/Cargo.lock index 446bc20c0e..f4772ed102 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,7 +44,7 @@ dependencies = [ [[package]] name = "anchor-attribute-access-control" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -56,7 +56,7 @@ dependencies = [ [[package]] name = "anchor-attribute-account" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -67,7 +67,7 @@ dependencies = [ [[package]] name = "anchor-attribute-error" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "proc-macro2 1.0.24", @@ -77,7 +77,7 @@ dependencies = [ [[package]] name = "anchor-attribute-event" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -88,7 +88,7 @@ dependencies = [ [[package]] name = "anchor-attribute-interface" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "anchor-attribute-program" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -111,7 +111,7 @@ dependencies = [ [[package]] name = "anchor-attribute-state" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -122,7 +122,7 @@ dependencies = [ [[package]] name = "anchor-cli" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-lang", "anchor-syn", @@ -146,7 +146,7 @@ dependencies = [ [[package]] name = "anchor-client" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-lang", "anyhow", @@ -158,7 +158,7 @@ dependencies = [ [[package]] name = "anchor-derive-accounts" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-syn", "anyhow", @@ -169,7 +169,7 @@ dependencies = [ [[package]] name = "anchor-lang" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-attribute-access-control", "anchor-attribute-account", @@ -187,7 +187,7 @@ dependencies = [ [[package]] name = "anchor-spl" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anchor-lang", "solana-program", @@ -196,7 +196,7 @@ dependencies = [ [[package]] name = "anchor-syn" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "bs58", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 838325c6d6..c2b620181b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-cli" -version = "0.4.0" +version = "0.4.1" authors = ["armaniferrante "] edition = "2018" diff --git a/cli/src/template.rs b/cli/src/template.rs index 36eaaf64a6..b35f4fd38c 100644 --- a/cli/src/template.rs +++ b/cli/src/template.rs @@ -28,7 +28,7 @@ cpi = ["no-entrypoint"] default = [] [dependencies] -anchor-lang = "0.4.0" +anchor-lang = "0.4.1" "#, name, name.to_snake_case(), diff --git a/client/Cargo.toml b/client/Cargo.toml index a26cccd344..40f56c4491 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "anchor-client" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] edition = "2018" license = "Apache-2.0" description = "Rust client for Anchor programs" [dependencies] -anchor-lang = { path = "../lang", version = "0.4.0" } +anchor-lang = { path = "../lang", version = "0.4.1" } anyhow = "1.0.32" regex = "1.4.5" solana-client = "1.6.3" diff --git a/lang/Cargo.toml b/lang/Cargo.toml index 726255f61b..ef27865971 100644 --- a/lang/Cargo.toml +++ b/lang/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-lang" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" edition = "2018" @@ -12,14 +12,14 @@ derive = [] default = [] [dependencies] -anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.4.0" } -anchor-attribute-account = { path = "./attribute/account", version = "0.4.0" } -anchor-attribute-error = { path = "./attribute/error", version = "0.4.0" } -anchor-attribute-program = { path = "./attribute/program", version = "0.4.0" } -anchor-attribute-state = { path = "./attribute/state", version = "0.4.0" } -anchor-attribute-interface = { path = "./attribute/interface", version = "0.4.0" } -anchor-derive-accounts = { path = "./derive/accounts", version = "0.4.0" } -anchor-attribute-event = { path = "./attribute/event", version = "0.4.0" } +anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.4.1" } +anchor-attribute-account = { path = "./attribute/account", version = "0.4.1" } +anchor-attribute-error = { path = "./attribute/error", version = "0.4.1" } +anchor-attribute-program = { path = "./attribute/program", version = "0.4.1" } +anchor-attribute-state = { path = "./attribute/state", version = "0.4.1" } +anchor-attribute-interface = { path = "./attribute/interface", version = "0.4.1" } +anchor-derive-accounts = { path = "./derive/accounts", version = "0.4.1" } +anchor-attribute-event = { path = "./attribute/event", version = "0.4.1" } borsh = "0.8.2" solana-program = "1.6.3" thiserror = "1.0.20" diff --git a/lang/attribute/access-control/Cargo.toml b/lang/attribute/access-control/Cargo.toml index 9ffba9366a..aa803211c3 100644 --- a/lang/attribute/access-control/Cargo.toml +++ b/lang/attribute/access-control/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-access-control" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,5 +15,5 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0" } -regex = "1.0" \ No newline at end of file +anchor-syn = { path = "../../syn", version = "0.4.1" } +regex = "1.0" diff --git a/lang/attribute/account/Cargo.toml b/lang/attribute/account/Cargo.toml index 2a2a15dfbe..00110098ae 100644 --- a/lang/attribute/account/Cargo.toml +++ b/lang/attribute/account/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-account" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,4 +15,4 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0", features = ["hash"] } +anchor-syn = { path = "../../syn", version = "0.4.1", features = ["hash"] } diff --git a/lang/attribute/error/Cargo.toml b/lang/attribute/error/Cargo.toml index 7712226877..fe1d0e2770 100644 --- a/lang/attribute/error/Cargo.toml +++ b/lang/attribute/error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-error" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -14,4 +14,4 @@ proc-macro = true proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } -anchor-syn = { path = "../../syn", version = "0.4.0" } \ No newline at end of file +anchor-syn = { path = "../../syn", version = "0.4.1" } \ No newline at end of file diff --git a/lang/attribute/event/Cargo.toml b/lang/attribute/event/Cargo.toml index c90e358247..a3fa32634f 100644 --- a/lang/attribute/event/Cargo.toml +++ b/lang/attribute/event/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-event" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,4 +15,4 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0", features = ["hash"] } +anchor-syn = { path = "../../syn", version = "0.4.1", features = ["hash"] } diff --git a/lang/attribute/interface/Cargo.toml b/lang/attribute/interface/Cargo.toml index 993e90eaaa..2f621e7b07 100644 --- a/lang/attribute/interface/Cargo.toml +++ b/lang/attribute/interface/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-interface" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,5 +15,5 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0" } +anchor-syn = { path = "../../syn", version = "0.4.1" } heck = "0.3.2" diff --git a/lang/attribute/program/Cargo.toml b/lang/attribute/program/Cargo.toml index c4055f275f..a3f95bbadc 100644 --- a/lang/attribute/program/Cargo.toml +++ b/lang/attribute/program/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-program" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,4 +15,4 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0" } +anchor-syn = { path = "../../syn", version = "0.4.1" } diff --git a/lang/attribute/state/Cargo.toml b/lang/attribute/state/Cargo.toml index 4c92420e15..c822e57b85 100644 --- a/lang/attribute/state/Cargo.toml +++ b/lang/attribute/state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-state" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,4 +15,4 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0" } +anchor-syn = { path = "../../syn", version = "0.4.1" } diff --git a/lang/derive/accounts/Cargo.toml b/lang/derive/accounts/Cargo.toml index 4665396599..9673f7d7d5 100644 --- a/lang/derive/accounts/Cargo.toml +++ b/lang/derive/accounts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-derive-accounts" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" @@ -15,4 +15,4 @@ proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0.60", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.4.0" } +anchor-syn = { path = "../../syn", version = "0.4.1" } diff --git a/lang/syn/Cargo.toml b/lang/syn/Cargo.toml index 5b8a1b393b..ab8c204043 100644 --- a/lang/syn/Cargo.toml +++ b/lang/syn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-syn" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" license = "Apache-2.0" diff --git a/spl/Cargo.toml b/spl/Cargo.toml index 46f78ace68..f3283a9d50 100644 --- a/spl/Cargo.toml +++ b/spl/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "anchor-spl" -version = "0.4.0" +version = "0.4.1" authors = ["Serum Foundation "] edition = "2018" license = "Apache-2.0" description = "CPI clients for SPL programs" [dependencies] -anchor-lang = { path = "../lang", version = "0.4.0", features = ["derive"] } +anchor-lang = { path = "../lang", version = "0.4.1", features = ["derive"] } spl-token = { version = "3.0.1", features = ["no-entrypoint"] } solana-program = "1.6.3" diff --git a/ts/package.json b/ts/package.json index b4e5f577f8..02f9c0ec80 100644 --- a/ts/package.json +++ b/ts/package.json @@ -1,6 +1,6 @@ { "name": "@project-serum/anchor", - "version": "0.4.0", + "version": "0.4.1", "description": "Anchor client", "main": "dist/cjs/index.js", "module": "dist/esm/index.js",