Skip to content

Commit 4b03d24

Browse files
committed
v1.0.0-beta.9
1 parent c502ad4 commit 4b03d24

File tree

20 files changed

+71
-71
lines changed

20 files changed

+71
-71
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.8",
2+
"version": "1.0.0-beta.9",
33
"lerna": "2.0.0",
44
"packages": [
55
"packages/*"

packages/web3-bzz/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-bzz",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to interact with the Swarm network.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-bzz",
66
"license": "LGPL-3.0",
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "web3-core-helpers",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 core tools helper for sub packages. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-helpers",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"underscore": "1.8.3",
10-
"web3-eth-iban": "^1.0.0-beta.8",
11-
"web3-utils": "^1.0.0-beta.8"
10+
"web3-eth-iban": "^1.0.0-beta.9",
11+
"web3-utils": "^1.0.0-beta.9"
1212
}
1313
}
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "web3-core-method",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Creates the methods on the web3 modules. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-method",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"underscore": "1.8.3",
10-
"web3-core-helpers": "^1.0.0-beta.8",
11-
"web3-core-promievent": "^1.0.0-beta.8",
12-
"web3-utils": "^1.0.0-beta.8"
10+
"web3-core-helpers": "^1.0.0-beta.9",
11+
"web3-core-promievent": "^1.0.0-beta.9",
12+
"web3-utils": "^1.0.0-beta.9"
1313
}
1414
}

packages/web3-core-promievent/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core-promievent",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "This package extends eventEmitters with promises to allow chaining as well as multiple final states of a function.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-promievent",
66
"license": "LGPL-3.0",
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "web3-requestmanager",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to handle requests to external providers.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-requestmanager",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"underscore": "1.8.3",
10-
"web3-core-helpers": "^1.0.0-beta.8",
11-
"web3-providers-http": "^1.0.0-beta.8",
12-
"web3-providers-ipc": "^1.0.0-beta.8",
13-
"web3-providers-ws": "^1.0.0-beta.8"
10+
"web3-core-helpers": "^1.0.0-beta.9",
11+
"web3-providers-http": "^1.0.0-beta.9",
12+
"web3-providers-ipc": "^1.0.0-beta.9",
13+
"web3-providers-ws": "^1.0.0-beta.9"
1414
}
1515
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "web3-core-subscriptions",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Manages web3 subscriptions. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core-subscriptions",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"eventemitter3": "1.1.1",
1010
"underscore": "1.8.3",
11-
"web3-core-helpers": "^1.0.0-beta.8"
11+
"web3-core-helpers": "^1.0.0-beta.9"
1212
}
1313
}

packages/web3-core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "web3-core",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 core tools for sub packages. This is an internal package.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-core",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
9-
"web3-core-helpers": "^1.0.0-beta.8",
10-
"web3-core-method": "^1.0.0-beta.8",
11-
"web3-requestmanager": "^1.0.0-beta.8",
12-
"web3-utils": "^1.0.0-beta.8"
9+
"web3-core-helpers": "^1.0.0-beta.9",
10+
"web3-core-method": "^1.0.0-beta.9",
11+
"web3-requestmanager": "^1.0.0-beta.9",
12+
"web3-utils": "^1.0.0-beta.9"
1313
}
1414
}

packages/web3-eth-abi/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "web3-eth-abi",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module encode and decode EVM in/output.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-abi",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"bn.js": "4.11.6",
1010
"underscore": "1.8.3",
11-
"web3-core-helpers": "^1.0.0-beta.8",
12-
"web3-utils": "^1.0.0-beta.8"
11+
"web3-core-helpers": "^1.0.0-beta.9",
12+
"web3-utils": "^1.0.0-beta.9"
1313
}
1414
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-accounts",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to generate Ethereum accounts and sign data and transactions.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-accounts",
66
"license": "LGPL-3.0",
@@ -11,7 +11,7 @@
1111
"scrypt.js": "0.2.0",
1212
"underscore": "1.8.3",
1313
"uuid": "2.0.1",
14-
"web3-core-helpers": "^1.0.0-beta.8",
15-
"web3-utils": "^1.0.0-beta.8"
14+
"web3-core-helpers": "^1.0.0-beta.9",
15+
"web3-utils": "^1.0.0-beta.9"
1616
}
1717
}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "web3-eth-contract",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to interact with Ethereum smart contracts.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-contract",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"underscore": "1.8.3",
10-
"web3-core-helpers": "^1.0.0-beta.8",
11-
"web3-core-method": "^1.0.0-beta.8",
12-
"web3-core-promievent": "^1.0.0-beta.8",
13-
"web3-core-subscriptions": "^1.0.0-beta.8",
14-
"web3-eth-abi": "^1.0.0-beta.8",
15-
"web3-utils": "^1.0.0-beta.8"
10+
"web3-core-helpers": "^1.0.0-beta.9",
11+
"web3-core-method": "^1.0.0-beta.9",
12+
"web3-core-promievent": "^1.0.0-beta.9",
13+
"web3-core-subscriptions": "^1.0.0-beta.9",
14+
"web3-eth-abi": "^1.0.0-beta.9",
15+
"web3-utils": "^1.0.0-beta.9"
1616
}
1717
}

packages/web3-eth-iban/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "web3-eth-iban",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "This package converts Ethereum addresses to IBAN addresses a vice versa.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-iban",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"bn.js": "^4.11.6",
10-
"web3-utils": "^1.0.0-beta.8"
10+
"web3-utils": "^1.0.0-beta.9"
1111
}
1212
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "web3-eth-personal",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to interact with the Ethereum blockchain accounts stored in the node.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-personal",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
9-
"web3-core": "^1.0.0-beta.8",
10-
"web3-core-helpers": "^1.0.0-beta.8",
11-
"web3-core-method": "^1.0.0-beta.8",
12-
"web3-net": "^1.0.0-beta.8",
13-
"web3-utils": "^1.0.0-beta.8"
9+
"web3-core": "^1.0.0-beta.9",
10+
"web3-core-helpers": "^1.0.0-beta.9",
11+
"web3-core-method": "^1.0.0-beta.9",
12+
"web3-net": "^1.0.0-beta.9",
13+
"web3-utils": "^1.0.0-beta.9"
1414
}
1515
}

packages/web3-eth/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"name": "web3-eth",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to interact with the Ethereum blockchain and smart contracts.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"underscore": "1.8.3",
10-
"web3-core": "^1.0.0-beta.8",
11-
"web3-core-helpers": "^1.0.0-beta.8",
12-
"web3-core-method": "^1.0.0-beta.8",
13-
"web3-core-subscriptions": "^1.0.0-beta.8",
14-
"web3-eth-abi": "^1.0.0-beta.8",
15-
"web3-eth-accounts": "^1.0.0-beta.8",
16-
"web3-eth-contract": "^1.0.0-beta.8",
17-
"web3-eth-iban": "^1.0.0-beta.8",
18-
"web3-eth-personal": "^1.0.0-beta.8",
19-
"web3-net": "^1.0.0-beta.8",
20-
"web3-utils": "^1.0.0-beta.8"
10+
"web3-core": "^1.0.0-beta.9",
11+
"web3-core-helpers": "^1.0.0-beta.9",
12+
"web3-core-method": "^1.0.0-beta.9",
13+
"web3-core-subscriptions": "^1.0.0-beta.9",
14+
"web3-eth-abi": "^1.0.0-beta.9",
15+
"web3-eth-accounts": "^1.0.0-beta.9",
16+
"web3-eth-contract": "^1.0.0-beta.9",
17+
"web3-eth-iban": "^1.0.0-beta.9",
18+
"web3-eth-personal": "^1.0.0-beta.9",
19+
"web3-net": "^1.0.0-beta.9",
20+
"web3-utils": "^1.0.0-beta.9"
2121
}
2222
}

packages/web3-net/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "web3-net",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to interact with the Ethereum nodes networking properties.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-net",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
9-
"web3-core": "^1.0.0-beta.8",
10-
"web3-core-method": "^1.0.0-beta.8",
11-
"web3-utils": "^1.0.0-beta.8"
9+
"web3-core": "^1.0.0-beta.9",
10+
"web3-core-method": "^1.0.0-beta.9",
11+
"web3-utils": "^1.0.0-beta.9"
1212
}
1313
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "web3-providers-http",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Module to handle web3 RPC connections over HTTP.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-providers-http",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
9-
"web3-core-helpers": "^1.0.0-beta.8",
9+
"web3-core-helpers": "^1.0.0-beta.9",
1010
"xhr2": "0.1.4"
1111
}
1212
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "web3-providers-ipc",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Module to handle web3 RPC connections over IPC sockets.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-providers-ipc",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"oboe": "2.1.3",
1010
"underscore": "1.8.3",
11-
"web3-core-helpers": "^1.0.0-beta.8"
11+
"web3-core-helpers": "^1.0.0-beta.9"
1212
}
1313
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "web3-providers-ws",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Module to handle web3 RPC connections over WebSockets.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-providers-ws",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
99
"underscore": "1.8.3",
10-
"web3-core-helpers": "^1.0.0-beta.8",
10+
"web3-core-helpers": "^1.0.0-beta.9",
1111
"websocket": "git://github.com/frozeman/WebSocket-Node.git#browserifyCompatible"
1212
}
1313
}

packages/web3-shh/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "web3-shh",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Web3 module to interact with the Whisper messaging protocol.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-shh",
66
"license": "LGPL-3.0",
77
"main": "src/index.js",
88
"dependencies": {
9-
"web3-core": "^1.0.0-beta.8",
10-
"web3-core-method": "^1.0.0-beta.8",
11-
"web3-core-subscriptions": "^1.0.0-beta.8",
12-
"web3-net": "^1.0.0-beta.8"
9+
"web3-core": "^1.0.0-beta.9",
10+
"web3-core-method": "^1.0.0-beta.9",
11+
"web3-core-subscriptions": "^1.0.0-beta.9",
12+
"web3-net": "^1.0.0-beta.9"
1313
}
1414
}

packages/web3-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-utils",
3-
"version": "1.0.0-beta.8",
3+
"version": "1.0.0-beta.9",
44
"description": "Collection of utility functions used in web3.js.",
55
"repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-utils",
66
"license": "LGPL-3.0",

0 commit comments

Comments
 (0)