diff --git a/Cargo.lock b/Cargo.lock index 0d61c5ea..2cb0789a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ dependencies = [ [[package]] name = "anchor-attribute-access-control" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-syn", "anyhow", @@ -62,7 +62,7 @@ dependencies = [ [[package]] name = "anchor-attribute-account" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-syn", "anyhow", @@ -73,7 +73,7 @@ dependencies = [ [[package]] name = "anchor-attribute-error" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-syn", "proc-macro2 1.0.24", @@ -83,7 +83,7 @@ dependencies = [ [[package]] name = "anchor-attribute-program" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-syn", "anyhow", @@ -94,7 +94,7 @@ dependencies = [ [[package]] name = "anchor-attribute-state" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-syn", "anyhow", @@ -139,7 +139,7 @@ dependencies = [ [[package]] name = "anchor-derive-accounts" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-syn", "anyhow", @@ -150,7 +150,7 @@ dependencies = [ [[package]] name = "anchor-lang" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-attribute-access-control", "anchor-attribute-account", @@ -165,7 +165,7 @@ dependencies = [ [[package]] name = "anchor-spl" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anchor-lang", "spl-token 3.0.1", @@ -173,7 +173,7 @@ dependencies = [ [[package]] name = "anchor-syn" -version = "0.0.0-alpha.0" +version = "0.1.0" dependencies = [ "anyhow", "heck", diff --git a/client/Cargo.toml b/client/Cargo.toml index 70b05fda..2fa8bc2b 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "anchor-client" version = "0.1.0" -authors = ["Armani Ferrante "] +authors = ["Serum Foundation "] edition = "2018" +license = "Apache-2.0" +description = "Rust client for Anchor programs" [dependencies] -anchor-lang = { path = "../lang" } +anchor-lang = { path = "../lang", version = "0.1.0" } solana-client = "1.5.0" solana-sdk = "1.5.0" thiserror = "1.0.20" \ No newline at end of file diff --git a/lang/Cargo.toml b/lang/Cargo.toml index abdb6628..9184664b 100644 --- a/lang/Cargo.toml +++ b/lang/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-lang" -version = "0.0.0-alpha.0" +version = "0.1.0" authors = ["Serum Foundation "] repository = "https://github.com/project-serum/anchor" edition = "2018" @@ -12,12 +12,12 @@ derive = [] default = [] [dependencies] -anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.0.0-alpha.0" } -anchor-attribute-account = { path = "./attribute/account", version = "0.0.0-alpha.0" } -anchor-attribute-error = { path = "./attribute/error" } -anchor-attribute-program = { path = "./attribute/program", version = "0.0.0-alpha.0" } -anchor-attribute-state = { path = "./attribute/state", version = "0.0.0-alpha.0" } -anchor-derive-accounts = { path = "./derive/accounts", version = "0.0.0-alpha.0" } +anchor-attribute-access-control = { path = "./attribute/access-control", version = "0.1.0" } +anchor-attribute-account = { path = "./attribute/account", version = "0.1.0" } +anchor-attribute-error = { path = "./attribute/error", version = "0.1.0" } +anchor-attribute-program = { path = "./attribute/program", version = "0.1.0" } +anchor-attribute-state = { path = "./attribute/state", version = "0.1.0" } +anchor-derive-accounts = { path = "./derive/accounts", version = "0.1.0" } serum-borsh = "0.8.1-serum.1" solana-program = "=1.5.0" thiserror = "1.0.20" \ No newline at end of file diff --git a/lang/attribute/access-control/Cargo.toml b/lang/attribute/access-control/Cargo.toml index 2a5448cd..217520b9 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.0.0-alpha.0" +version = "0.1.0" 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.57", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" } \ No newline at end of file +anchor-syn = { path = "../../syn", version = "0.1.0" } \ No newline at end of file diff --git a/lang/attribute/account/Cargo.toml b/lang/attribute/account/Cargo.toml index 8fb12839..e245c0d2 100644 --- a/lang/attribute/account/Cargo.toml +++ b/lang/attribute/account/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-account" -version = "0.0.0-alpha.0" +version = "0.1.0" 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.57", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" } +anchor-syn = { path = "../../syn", version = "0.1.0" } diff --git a/lang/attribute/error/Cargo.toml b/lang/attribute/error/Cargo.toml index a4371aee..531e11ae 100644 --- a/lang/attribute/error/Cargo.toml +++ b/lang/attribute/error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-error" -version = "0.0.0-alpha.0" +version = "0.1.0" 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.57", features = ["full"] } -anchor-syn = { path = "../../syn" } \ No newline at end of file +anchor-syn = { path = "../../syn", version = "0.1.0" } \ No newline at end of file diff --git a/lang/attribute/program/Cargo.toml b/lang/attribute/program/Cargo.toml index 231c5a2a..24239d8f 100644 --- a/lang/attribute/program/Cargo.toml +++ b/lang/attribute/program/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-program" -version = "0.0.0-alpha.0" +version = "0.1.0" 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.57", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" } +anchor-syn = { path = "../../syn", version = "0.1.0" } diff --git a/lang/attribute/state/Cargo.toml b/lang/attribute/state/Cargo.toml index 6468dc4b..e3d8d116 100644 --- a/lang/attribute/state/Cargo.toml +++ b/lang/attribute/state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-attribute-state" -version = "0.0.0-alpha.0" +version = "0.1.0" 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.57", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" } +anchor-syn = { path = "../../syn", version = "0.1.0" } diff --git a/lang/derive/accounts/Cargo.toml b/lang/derive/accounts/Cargo.toml index b4436e8b..e4c78212 100644 --- a/lang/derive/accounts/Cargo.toml +++ b/lang/derive/accounts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-derive-accounts" -version = "0.0.0-alpha.0" +version = "0.1.0" 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.57", features = ["full"] } anyhow = "1.0.32" -anchor-syn = { path = "../../syn", version = "0.0.0-alpha.0" } +anchor-syn = { path = "../../syn", version = "0.1.0" } diff --git a/lang/syn/Cargo.toml b/lang/syn/Cargo.toml index a5bbd00b..ba8b0b13 100644 --- a/lang/syn/Cargo.toml +++ b/lang/syn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "anchor-syn" -version = "0.0.0-alpha.0" +version = "0.1.0" 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 96b71439..7bac9dd7 100644 --- a/spl/Cargo.toml +++ b/spl/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "anchor-spl" -version = "0.0.0-alpha.0" -authors = ["Armani Ferrante "] +version = "0.1.0" +authors = ["Serum Foundation "] edition = "2018" +license = "Apache-2.0" +description = "CPI clients for SPL programs" [dependencies] -anchor-lang = { path = "../lang", features = ["derive"] } +anchor-lang = { path = "../lang", version = "0.1.0", features = ["derive"] } spl-token = { version = "3.0.1", features = ["no-entrypoint"] } diff --git a/ts/package.json b/ts/package.json index 1c6c54ed..3fffcada 100644 --- a/ts/package.json +++ b/ts/package.json @@ -1,6 +1,6 @@ { "name": "@project-serum/anchor", - "version": "0.0.0-alpha.11", + "version": "0.1.0", "description": "Anchor client", "main": "dist/cjs/index.js", "module": "dist/esm/index.js",