From 18b5f983323fef0d154d06c765d4b64064a0592a Mon Sep 17 00:00:00 2001 From: Pierre Bertet Date: Wed, 29 Jul 2020 19:21:47 +0100 Subject: [PATCH] v0.5.0 --- examples/connect-react-intro/package.json | 2 +- examples/list-balances-cli/package.json | 2 +- examples/list-votes-cli/package.json | 2 +- examples/list-votes-react/package.json | 2 +- examples/minimal-setup-web/package.json | 2 +- examples/nodejs/package.json | 2 +- package.json | 15 ++++++++++++--- packages/connect-core/package.json | 14 +++++++++++--- packages/connect-ethereum/package.json | 14 +++++++++++--- packages/connect-finance/package.json | 2 +- packages/connect-react/package.json | 2 +- packages/connect-thegraph/package.json | 14 +++++++++++--- packages/connect-tokens/package.json | 14 +++++++++++--- packages/connect-types/package.json | 6 ++++-- packages/connect-voting/package.json | 14 +++++++++++--- packages/connect/package.json | 14 +++++++++++--- 16 files changed, 90 insertions(+), 31 deletions(-) diff --git a/examples/connect-react-intro/package.json b/examples/connect-react-intro/package.json index 3601110f..36580821 100644 --- a/examples/connect-react-intro/package.json +++ b/examples/connect-react-intro/package.json @@ -1,7 +1,7 @@ { "name": "connect-react-intro", "private": true, - "version": "1.0.0", + "version": "0.5.0", "scripts": { "start": "snowpack dev", "build": "snowpack build" diff --git a/examples/list-balances-cli/package.json b/examples/list-balances-cli/package.json index 4b81d187..7a35b9f5 100644 --- a/examples/list-balances-cli/package.json +++ b/examples/list-balances-cli/package.json @@ -1,7 +1,7 @@ { "name": "list-balances-cli", "private": true, - "version": "1.0.0", + "version": "0.5.0", "main": "index.js", "license": "MIT", "scripts": { diff --git a/examples/list-votes-cli/package.json b/examples/list-votes-cli/package.json index ed1f267f..d2cdbcef 100644 --- a/examples/list-votes-cli/package.json +++ b/examples/list-votes-cli/package.json @@ -1,7 +1,7 @@ { "name": "list-votes-cli", "private": true, - "version": "1.0.0", + "version": "0.5.0", "main": "index.js", "license": "MIT", "scripts": { diff --git a/examples/list-votes-react/package.json b/examples/list-votes-react/package.json index 4b2595ac..933eca43 100644 --- a/examples/list-votes-react/package.json +++ b/examples/list-votes-react/package.json @@ -1,7 +1,7 @@ { "name": "list-votes-react", "private": true, - "version": "1.0.0", + "version": "0.5.0", "scripts": { "start": "snowpack dev", "build": "snowpack build" diff --git a/examples/minimal-setup-web/package.json b/examples/minimal-setup-web/package.json index 302e3f65..6003de19 100644 --- a/examples/minimal-setup-web/package.json +++ b/examples/minimal-setup-web/package.json @@ -1,7 +1,7 @@ { "name": "minimal-setup-web", "private": true, - "version": "1.0.0", + "version": "0.5.0", "main": "index.js", "license": "MIT", "scripts": { diff --git a/examples/nodejs/package.json b/examples/nodejs/package.json index 5ffb0072..7e48e3ae 100644 --- a/examples/nodejs/package.json +++ b/examples/nodejs/package.json @@ -1,7 +1,7 @@ { "name": "nodejs", "main": "dist/index.js", - "version": "0.4.2", + "version": "0.5.0", "private": true, "scripts": { "build": "yarn clean && yarn compile", diff --git a/package.json b/package.json index ee8bfc6b..388d6df3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,13 @@ { "name": "@aragon/connect", "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "license": "LGPL-3.0-or-later", "homepage": "https://github.com/aragon/connect", @@ -9,7 +15,10 @@ "bugs": "https://github.com/aragon/connect/issues", "private": true, "workspaces": { - "packages": ["packages/*", "examples/*"], + "packages": [ + "packages/*", + "examples/*" + ], "nohoist": [ "**/@graphprotocol/graph-ts", "**/@graphprotocol/graph-ts/**", @@ -44,5 +53,5 @@ "oao": "^1.8.0", "ts-jest": "^26.1.0" }, - "version": "0.4.2" + "version": "0.5.0" } diff --git a/packages/connect-core/package.json b/packages/connect-core/package.json index 1a071f5b..f0c91014 100644 --- a/packages/connect-core/package.json +++ b/packages/connect-core/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-core", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -18,7 +18,9 @@ "clean": "rm -rf ./dist ./tsconfig.tsbuildinfo", "lint": "eslint --ext .ts ./src" }, - "files": ["dist"], + "files": [ + "dist" + ], "devDependencies": { "@types/jest": "^26.0.0", "@typescript-eslint/eslint-plugin": "^2.29.0", @@ -35,7 +37,13 @@ "radspec": "^2.0.0-rc.1" }, "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "homepage": "https://github.com/aragon/connect", "bugs": "https://github.com/aragon/connect/issues", diff --git a/packages/connect-ethereum/package.json b/packages/connect-ethereum/package.json index f9378044..5e270f02 100644 --- a/packages/connect-ethereum/package.json +++ b/packages/connect-ethereum/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-ethereum", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -18,7 +18,9 @@ "clean": "rm -rf ./dist && rm -f tsconfig.tsbuildinfo", "lint": "eslint --ext .ts ./src" }, - "files": ["dist"], + "files": [ + "dist" + ], "devDependencies": { "@types/jest": "^26.0.0", "@typescript-eslint/eslint-plugin": "^2.29.0", @@ -34,7 +36,13 @@ "@aragon/connect-core": "*" }, "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "homepage": "https://github.com/aragon/connect", "bugs": "https://github.com/aragon/connect/issues", diff --git a/packages/connect-finance/package.json b/packages/connect-finance/package.json index c9a5acc5..40be78b3 100644 --- a/packages/connect-finance/package.json +++ b/packages/connect-finance/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-finance", - "version": "0.0.1", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/connect-react/package.json b/packages/connect-react/package.json index 901e481f..c0d699f9 100644 --- a/packages/connect-react/package.json +++ b/packages/connect-react/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-react", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/connect-thegraph/package.json b/packages/connect-thegraph/package.json index 25482156..e310ccee 100644 --- a/packages/connect-thegraph/package.json +++ b/packages/connect-thegraph/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-thegraph", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -18,7 +18,9 @@ "clean": "rm -rf ./dist ./tsconfig.tsbuildinfo", "lint": "eslint --ext .ts ./src" }, - "files": ["dist"], + "files": [ + "dist" + ], "devDependencies": { "@types/jest": "^26.0.0", "@types/react": "^16.9.34", @@ -41,7 +43,13 @@ "subscriptions-transport-ws": "^0.9.16" }, "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "homepage": "https://github.com/aragon/connect", "bugs": "https://github.com/aragon/connect/issues", diff --git a/packages/connect-tokens/package.json b/packages/connect-tokens/package.json index 1e2fb055..08887ffa 100644 --- a/packages/connect-tokens/package.json +++ b/packages/connect-tokens/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-tokens", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -18,7 +18,9 @@ "clean": "rm -rf ./dist ./tsconfig.tsbuildinfo", "lint": "eslint --ext .ts ./src" }, - "files": ["dist"], + "files": [ + "dist" + ], "devDependencies": { "@types/jest": "^26.0.0", "@types/react": "^16.9.34", @@ -36,7 +38,13 @@ "graphql-tag": "^2.10.3" }, "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "homepage": "https://github.com/aragon/connect", "bugs": "https://github.com/aragon/connect/issues", diff --git a/packages/connect-types/package.json b/packages/connect-types/package.json index 0a9ebf4a..4a9006cf 100644 --- a/packages/connect-types/package.json +++ b/packages/connect-types/package.json @@ -1,12 +1,14 @@ { "name": "@aragon/connect-types", "private": true, - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/cjs/index.d.ts", - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build": "yarn build:esm && yarn build:cjs", "build:esm": "tsc --build", diff --git a/packages/connect-voting/package.json b/packages/connect-voting/package.json index 44dcc9e6..a12444a8 100644 --- a/packages/connect-voting/package.json +++ b/packages/connect-voting/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect-voting", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -18,7 +18,9 @@ "clean": "rm -rf ./dist ./tsconfig.tsbuildinfo", "lint": "eslint --ext .ts ./src" }, - "files": ["dist"], + "files": [ + "dist" + ], "devDependencies": { "@types/jest": "^26.0.0", "@types/react": "^16.9.34", @@ -36,7 +38,13 @@ "graphql-tag": "^2.10.3" }, "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "homepage": "https://github.com/aragon/connect", "bugs": "https://github.com/aragon/connect/issues", diff --git a/packages/connect/package.json b/packages/connect/package.json index c2a6401a..c9679c2f 100644 --- a/packages/connect/package.json +++ b/packages/connect/package.json @@ -1,6 +1,6 @@ { "name": "@aragon/connect", - "version": "0.4.2", + "version": "0.5.0", "license": "LGPL-3.0-or-later", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", @@ -18,7 +18,9 @@ "clean": "rm -rf ./dist ./tsconfig.tsbuildinfo", "lint": "eslint --ext .ts ./src" }, - "files": ["dist"], + "files": [ + "dist" + ], "devDependencies": { "@types/jest": "^26.0.0", "@typescript-eslint/eslint-plugin": "^2.29.0", @@ -36,7 +38,13 @@ "@aragon/connect-thegraph": "*" }, "description": "Access and interact with Aragon Organizations and their apps.", - "keywords": ["ethereum", "javascript", "web3", "dapp", "aragon"], + "keywords": [ + "ethereum", + "javascript", + "web3", + "dapp", + "aragon" + ], "author": "Aragon Association ", "homepage": "https://github.com/aragon/connect", "bugs": "https://github.com/aragon/connect/issues",