Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Bump all versions

* Bump buidler-vyper version 🙈
  • Loading branch information
alcuadrado committed Sep 17, 2019
1 parent 0616a2a commit 67b8888
Show file tree
Hide file tree
Showing 13 changed files with 37 additions and 37 deletions.
2 changes: 1 addition & 1 deletion docs/guides/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Let’s create the sample project and go through the steps to try out the sample
To first get a quick sense of what's available and what's going on, run `npx buidler` in your project folder:
```
$ npx buidler
Buidler version 1.0.0-beta.10
Buidler version 1.0.0-beta.11
Usage: buidler [GLOBAL OPTIONS] <TASK> [TASK OPTIONS]
Expand Down
6 changes: 3 additions & 3 deletions docs/guides/create-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Everything you can do in Buidler is defined as a task. The default actions that
To see the currently available tasks in your project, run `npx buidler`:
```
$ npx buidler
Buidler version 1.0.0-beta.10
Buidler version 1.0.0-beta.11
Usage: buidler [GLOBAL OPTIONS] <TASK> [TASK OPTIONS]
Expand Down Expand Up @@ -73,7 +73,7 @@ After saving the file, you should already be able to see the task in Buidler:

```
$ npx buidler
Buidler version 1.0.0-beta.10
Buidler version 1.0.0-beta.11
Usage: buidler [GLOBAL OPTIONS] <TASK> [TASK OPTIONS]
Expand Down Expand Up @@ -117,7 +117,7 @@ When you add a parameter to a task, Buidler will handle its help messages for yo

```
$ npx buidler help balance
Buidler version 1.0.0-beta.10
Buidler version 1.0.0-beta.11
Usage: buidler [GLOBAL OPTIONS] balance --account <STRING>
Expand Down
2 changes: 1 addition & 1 deletion packages/buidler-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"author": "Nomic Labs SRL",
"license": "MIT",
"homepage": "https://buidler.dev",
Expand Down
2 changes: 1 addition & 1 deletion packages/buidler-core/src/internal/cli/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class Analytics {
// Possible values: "CI", "Developer".
cd2: this._userType,
// Custom dimension 3: Buidler Version
// Example: "Buidler 1.0.0-beta.10".
// Example: "Buidler 1.0.0-beta.11".
cd3: await getBuidlerVersion()
};
}
Expand Down
6 changes: 3 additions & 3 deletions packages/buidler-ethers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-ethers",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "Buidler plugin for ethers",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-ethers",
"repository": "github:nomiclabs/buidler",
Expand Down Expand Up @@ -32,13 +32,13 @@
"README.md"
],
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@types/fs-extra": "^5.1.0",
"chai": "^4.2.0",
"ethers": "^4.0.27"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"ethers": "^4.0.27"
}
}
6 changes: 3 additions & 3 deletions packages/buidler-etherscan/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-etherscan",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "Buidler plugin for verifying contracts on etherscan",
"repository": "github:nomiclabs/buidler",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-etherscan",
Expand Down Expand Up @@ -40,7 +40,7 @@
"request-promise": "^4.2.4"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@types/ethereumjs-abi": "^0.6.3",
"@types/nock": "^9.3.1",
"@types/request": "^2.48.1",
Expand All @@ -51,6 +51,6 @@
"solc": "0.5.8"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10"
"@nomiclabs/buidler": "^1.0.0-beta.11"
}
}
6 changes: 3 additions & 3 deletions packages/buidler-solhint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-solhint",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "Buidler plugin for solhint",
"repository": "github:nomiclabs/buidler",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-solhint",
Expand Down Expand Up @@ -37,12 +37,12 @@
"solhint": "^2.0.0"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@types/fs-extra": "^5.1.0",
"chai": "^4.2.0",
"fs-extra": "^7.0.1"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10"
"@nomiclabs/buidler": "^1.0.0-beta.11"
}
}
6 changes: 3 additions & 3 deletions packages/buidler-solpp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-solpp",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "Buidler plugin for solpp",
"repository": "github:nomiclabs/buidler",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-solpp",
Expand Down Expand Up @@ -38,11 +38,11 @@
"solpp": "^0.10.1"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@types/fs-extra": "^5.1.0",
"chai": "^4.2.0"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10"
"@nomiclabs/buidler": "^1.0.0-beta.11"
}
}
10 changes: 5 additions & 5 deletions packages/buidler-truffle4/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-truffle4",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "Truffle 4 Buidler compatibility plugin",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-truffle4",
"repository": "github:nomiclabs/buidler",
Expand Down Expand Up @@ -37,14 +37,14 @@
"truffle-contract": "^3.0.7"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler-web3-legacy": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@nomiclabs/buidler-web3-legacy": "^1.0.0-beta.11",
"@types/glob": "^7.1.1",
"web3": "^0.20.7"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler-web3-legacy": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@nomiclabs/buidler-web3-legacy": "^1.0.0-beta.11",
"web3": "^0.20.7"
}
}
10 changes: 5 additions & 5 deletions packages/buidler-truffle5/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-truffle5",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"description": "Truffle 5 Buidler compatibility plugin",
"repository": "github:nomiclabs/buidler",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-truffle5",
Expand Down Expand Up @@ -37,15 +37,15 @@
"truffle-contract": "^4.0.27"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler-web3": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@nomiclabs/buidler-web3": "^1.0.0-beta.11",
"@types/chai": "^4.1.7",
"@types/glob": "^7.1.1",
"web3": "^1.2.0"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler-web3": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@nomiclabs/buidler-web3": "^1.0.0-beta.11",
"web3": "^1.2.0"
}
}
6 changes: 3 additions & 3 deletions packages/buidler-vyper/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-vyper",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.12",
"description": "Buidler plugin to develop smart contracts in Vyper",
"repository": "github:nomiclabs/buidler",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-vyper",
Expand Down Expand Up @@ -38,12 +38,12 @@
"@nomiclabs/buidler-docker": "^0.1.2"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"@types/fs-extra": "^5.1.0",
"chai": "^4.2.0",
"@types/glob": "^7.1.1"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10"
"@nomiclabs/buidler": "^1.0.0-beta.11"
}
}
6 changes: 3 additions & 3 deletions packages/buidler-web3-legacy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-web3-legacy",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"author": "Nomic Labs SRL",
"license": "MIT",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-web3-legacy",
Expand Down Expand Up @@ -33,12 +33,12 @@
"README.md"
],
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"chai": "^4.2.0",
"web3": "^0.20.7"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"web3": "^0.20.7"
}
}
6 changes: 3 additions & 3 deletions packages/buidler-web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nomiclabs/buidler-web3",
"version": "1.0.0-beta.10",
"version": "1.0.0-beta.11",
"author": "Nomic Labs SRL",
"license": "MIT",
"homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-web3",
Expand Down Expand Up @@ -33,12 +33,12 @@
"README.md"
],
"devDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"chai": "^4.2.0",
"web3": "^1.2.0"
},
"peerDependencies": {
"@nomiclabs/buidler": "^1.0.0-beta.10",
"@nomiclabs/buidler": "^1.0.0-beta.11",
"web3": "^1.2.0"
}
}

0 comments on commit 67b8888

Please sign in to comment.