Armani Ferrante 4 years ago
parent
commit
72bf55db2b

+ 9 - 9
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",

+ 4 - 2
client/Cargo.toml

@@ -1,11 +1,13 @@
 [package]
 name = "anchor-client"
 version = "0.1.0"
-authors = ["Armani Ferrante <armaniferrante@gmail.com>"]
+authors = ["Serum Foundation <foundation@projectserum.com>"]
 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"

+ 7 - 7
lang/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "anchor-lang"
-version = "0.0.0-alpha.0"
+version = "0.1.0"
 authors = ["Serum Foundation <foundation@projectserum.com>"]
 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"

+ 2 - 2
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 <foundation@projectserum.com>"]
 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" }

+ 2 - 2
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 <foundation@projectserum.com>"]
 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" }

+ 2 - 2
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 <foundation@projectserum.com>"]
 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" }
+anchor-syn = { path = "../../syn", version = "0.1.0" }

+ 2 - 2
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 <foundation@projectserum.com>"]
 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" }

+ 2 - 2
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 <foundation@projectserum.com>"]
 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" }

+ 2 - 2
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 <foundation@projectserum.com>"]
 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" }

+ 1 - 1
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 <foundation@projectserum.com>"]
 repository = "https://github.com/project-serum/anchor"
 license = "Apache-2.0"

+ 5 - 3
spl/Cargo.toml

@@ -1,9 +1,11 @@
 [package]
 name = "anchor-spl"
-version = "0.0.0-alpha.0"
-authors = ["Armani Ferrante <armaniferrante@gmail.com>"]
+version = "0.1.0"
+authors = ["Serum Foundation <foundation@projectserum.com>"]
 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"] }

+ 1 - 1
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",