bumped version

This commit is contained in:
Fabian Vogelsteller 2015-03-12 16:42:27 +01:00
parent 3614cea289
commit 27e570670f
3 changed files with 3 additions and 3 deletions

2
dist/ethereum.js vendored
View File

@ -2850,7 +2850,7 @@ module.exports = {
module.exports={ module.exports={
"name": "ethereum.js", "name": "ethereum.js",
"namespace": "ethereum", "namespace": "ethereum",
"version": "0.1.2", "version": "0.1.3",
"description": "Ethereum JavaScript API, middleware to talk to a ethreum node over RPC", "description": "Ethereum JavaScript API, middleware to talk to a ethreum node over RPC",
"main": "./index.js", "main": "./index.js",
"directories": { "directories": {

View File

@ -51,7 +51,7 @@
"/*\n This file is part of ethereum.js.\n\n ethereum.js is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n ethereum.js is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.\n*/\n/** @file shh.js\n * @authors:\n * Marek Kotewicz <marek@ethdev.com>\n * @date 2015\n */\n\nvar formatters = require('./formatters');\n\n/// @returns an array of objects describing web3.shh api methods\nvar methods = function () {\n return [\n { name: 'post', call: 'shh_post', inputFormatter: formatters.inputPostFormatter },\n { name: 'newIdentity', call: 'shh_newIdentity' },\n { name: 'hasIdentity', call: 'shh_hasIdentity' },\n { name: 'newGroup', call: 'shh_newGroup' },\n { name: 'addToGroup', call: 'shh_addToGroup' },\n\n // deprecated\n { name: 'haveIdentity', call: 'shh_haveIdentity', newMethod: 'shh.hasIdentity' },\n ];\n};\n\nmodule.exports = {\n methods: methods\n};\n\n", "/*\n This file is part of ethereum.js.\n\n ethereum.js is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n ethereum.js is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.\n*/\n/** @file shh.js\n * @authors:\n * Marek Kotewicz <marek@ethdev.com>\n * @date 2015\n */\n\nvar formatters = require('./formatters');\n\n/// @returns an array of objects describing web3.shh api methods\nvar methods = function () {\n return [\n { name: 'post', call: 'shh_post', inputFormatter: formatters.inputPostFormatter },\n { name: 'newIdentity', call: 'shh_newIdentity' },\n { name: 'hasIdentity', call: 'shh_hasIdentity' },\n { name: 'newGroup', call: 'shh_newGroup' },\n { name: 'addToGroup', call: 'shh_addToGroup' },\n\n // deprecated\n { name: 'haveIdentity', call: 'shh_haveIdentity', newMethod: 'shh.hasIdentity' },\n ];\n};\n\nmodule.exports = {\n methods: methods\n};\n\n",
"/*\n This file is part of ethereum.js.\n\n ethereum.js is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n ethereum.js is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.\n*/\n/** @file signature.js\n * @authors:\n * Marek Kotewicz <marek@ethdev.com>\n * @date 2015\n */\n\nvar web3 = require('../web3'); \nvar c = require('../utils/config');\n\n/// @param function name for which we want to get signature\n/// @returns signature of function with given name\nvar functionSignatureFromAscii = function (name) {\n return web3.sha3(web3.fromAscii(name)).slice(0, 2 + c.ETH_SIGNATURE_LENGTH * 2);\n};\n\n/// @param event name for which we want to get signature\n/// @returns signature of event with given name\nvar eventSignatureFromAscii = function (name) {\n return web3.sha3(web3.fromAscii(name));\n};\n\nmodule.exports = {\n functionSignatureFromAscii: functionSignatureFromAscii,\n eventSignatureFromAscii: eventSignatureFromAscii\n};\n\n", "/*\n This file is part of ethereum.js.\n\n ethereum.js is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n ethereum.js is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.\n*/\n/** @file signature.js\n * @authors:\n * Marek Kotewicz <marek@ethdev.com>\n * @date 2015\n */\n\nvar web3 = require('../web3'); \nvar c = require('../utils/config');\n\n/// @param function name for which we want to get signature\n/// @returns signature of function with given name\nvar functionSignatureFromAscii = function (name) {\n return web3.sha3(web3.fromAscii(name)).slice(0, 2 + c.ETH_SIGNATURE_LENGTH * 2);\n};\n\n/// @param event name for which we want to get signature\n/// @returns signature of event with given name\nvar eventSignatureFromAscii = function (name) {\n return web3.sha3(web3.fromAscii(name));\n};\n\nmodule.exports = {\n functionSignatureFromAscii: functionSignatureFromAscii,\n eventSignatureFromAscii: eventSignatureFromAscii\n};\n\n",
"/*\n This file is part of ethereum.js.\n\n ethereum.js is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n ethereum.js is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.\n*/\n/** @file watches.js\n * @authors:\n * Marek Kotewicz <marek@ethdev.com>\n * @date 2015\n */\n\n/// @returns an array of objects describing web3.eth.filter api methods\nvar eth = function () {\n var newFilter = function (args) {\n return typeof args[0] === 'string' ? 'eth_newBlockFilter' : 'eth_newFilter';\n };\n\n return [\n { name: 'newFilter', call: newFilter },\n { name: 'uninstallFilter', call: 'eth_uninstallFilter' },\n { name: 'getLogs', call: 'eth_getFilterLogs' }\n ];\n};\n\n/// @returns an array of objects describing web3.shh.watch api methods\nvar shh = function () {\n return [\n { name: 'newFilter', call: 'shh_newFilter' },\n { name: 'uninstallFilter', call: 'shh_uninstallFilter' },\n { name: 'getLogs', call: 'shh_getMessages' }\n ];\n};\n\nmodule.exports = {\n eth: eth,\n shh: shh\n};\n\n", "/*\n This file is part of ethereum.js.\n\n ethereum.js is free software: you can redistribute it and/or modify\n it under the terms of the GNU Lesser General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n ethereum.js is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU Lesser General Public License for more details.\n\n You should have received a copy of the GNU Lesser General Public License\n along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.\n*/\n/** @file watches.js\n * @authors:\n * Marek Kotewicz <marek@ethdev.com>\n * @date 2015\n */\n\n/// @returns an array of objects describing web3.eth.filter api methods\nvar eth = function () {\n var newFilter = function (args) {\n return typeof args[0] === 'string' ? 'eth_newBlockFilter' : 'eth_newFilter';\n };\n\n return [\n { name: 'newFilter', call: newFilter },\n { name: 'uninstallFilter', call: 'eth_uninstallFilter' },\n { name: 'getLogs', call: 'eth_getFilterLogs' }\n ];\n};\n\n/// @returns an array of objects describing web3.shh.watch api methods\nvar shh = function () {\n return [\n { name: 'newFilter', call: 'shh_newFilter' },\n { name: 'uninstallFilter', call: 'shh_uninstallFilter' },\n { name: 'getLogs', call: 'shh_getMessages' }\n ];\n};\n\nmodule.exports = {\n eth: eth,\n shh: shh\n};\n\n",
"module.exports={\n \"name\": \"ethereum.js\",\n \"namespace\": \"ethereum\",\n \"version\": \"0.1.2\",\n \"description\": \"Ethereum JavaScript API, middleware to talk to a ethreum node over RPC\",\n \"main\": \"./index.js\",\n \"directories\": {\n \"lib\": \"./lib\"\n },\n \"dependencies\": {\n \"bignumber.js\": \">=2.0.0\",\n \"envify\": \"^3.0.0\",\n \"unreachable-branch-transform\": \"^0.1.0\",\n \"xmlhttprequest\": \"*\"\n },\n \"devDependencies\": {\n \"bower\": \">=1.3.0\",\n \"browserify\": \">=6.0\",\n \"chai\": \"^2.1.1\",\n \"coveralls\": \"^2.11.2\",\n \"del\": \">=0.1.1\",\n \"exorcist\": \"^0.1.6\",\n \"gulp\": \">=3.4.0\",\n \"gulp-jshint\": \">=1.5.0\",\n \"gulp-rename\": \">=1.2.0\",\n \"gulp-streamify\": \"0.0.5\",\n \"gulp-uglify\": \">=1.0.0\",\n \"istanbul\": \"^0.3.5\",\n \"jshint\": \">=2.5.0\",\n \"karma\": \"^0.12.31\",\n \"karma-browserify\": \"^4.0.0\",\n \"karma-chrome-launcher\": \"^0.1.7\",\n \"karma-firefox-launcher\": \"^0.1.4\",\n \"karma-mocha\": \"^0.1.10\",\n \"karma-safari-launcher\": \"^0.1.1\",\n \"mocha\": \">=2.1.0\",\n \"vinyl-source-stream\": \"^1.0.0\"\n },\n \"scripts\": {\n \"build\": \"gulp\",\n \"watch\": \"gulp watch\",\n \"lint\": \"jshint *.js lib\",\n \"test\": \"mocha\",\n \"test-coveralls\": \"istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose\",\n \"karma\": \"./node_modules/karma/bin/karma start --singleRun=true --browsers=\\\"Firefox\\\"\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/ethereum/ethereum.js.git\"\n },\n \"homepage\": \"https://github.com/ethereum/ethereum.js\",\n \"bugs\": {\n \"url\": \"https://github.com/ethereum/ethereum.js/issues\"\n },\n \"browserify\": {\n \"transform\": [\n [\n \"envify\",\n {\n \"NODE_ENV\": \"build\"\n }\n ],\n [\n \"unreachable-branch-transform\"\n ]\n ]\n },\n \"keywords\": [\n \"ethereum\",\n \"javascript\",\n \"API\"\n ],\n \"author\": \"ethdev.com\",\n \"authors\": [\n {\n \"name\": \"Jeffery Wilcke\",\n \"email\": \"jeff@ethdev.com\",\n \"url\": \"https://github.com/obscuren\"\n },\n {\n \"name\": \"Marek Kotewicz\",\n \"email\": \"marek@ethdev.com\",\n \"url\": \"https://github.com/debris\"\n },\n {\n \"name\": \"Marian Oancea\",\n \"email\": \"marian@ethdev.com\",\n \"url\": \"https://github.com/cubedro\"\n },\n {\n \"name\": \"Fabian Vogelsteller\",\n \"email\": \"fabian@ethdev.com\",\n \"homepage\": \"https://github.com/frozeman\"\n }\n ],\n \"license\": \"LGPL-3.0\"\n}\n", "module.exports={\n \"name\": \"ethereum.js\",\n \"namespace\": \"ethereum\",\n \"version\": \"0.1.3\",\n \"description\": \"Ethereum JavaScript API, middleware to talk to a ethreum node over RPC\",\n \"main\": \"./index.js\",\n \"directories\": {\n \"lib\": \"./lib\"\n },\n \"dependencies\": {\n \"bignumber.js\": \">=2.0.0\",\n \"envify\": \"^3.0.0\",\n \"unreachable-branch-transform\": \"^0.1.0\",\n \"xmlhttprequest\": \"*\"\n },\n \"devDependencies\": {\n \"bower\": \">=1.3.0\",\n \"browserify\": \">=6.0\",\n \"chai\": \"^2.1.1\",\n \"coveralls\": \"^2.11.2\",\n \"del\": \">=0.1.1\",\n \"exorcist\": \"^0.1.6\",\n \"gulp\": \">=3.4.0\",\n \"gulp-jshint\": \">=1.5.0\",\n \"gulp-rename\": \">=1.2.0\",\n \"gulp-streamify\": \"0.0.5\",\n \"gulp-uglify\": \">=1.0.0\",\n \"istanbul\": \"^0.3.5\",\n \"jshint\": \">=2.5.0\",\n \"karma\": \"^0.12.31\",\n \"karma-browserify\": \"^4.0.0\",\n \"karma-chrome-launcher\": \"^0.1.7\",\n \"karma-firefox-launcher\": \"^0.1.4\",\n \"karma-mocha\": \"^0.1.10\",\n \"karma-safari-launcher\": \"^0.1.1\",\n \"mocha\": \">=2.1.0\",\n \"vinyl-source-stream\": \"^1.0.0\"\n },\n \"scripts\": {\n \"build\": \"gulp\",\n \"watch\": \"gulp watch\",\n \"lint\": \"jshint *.js lib\",\n \"test\": \"mocha\",\n \"test-coveralls\": \"istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose\",\n \"karma\": \"./node_modules/karma/bin/karma start --singleRun=true --browsers=\\\"Firefox\\\"\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/ethereum/ethereum.js.git\"\n },\n \"homepage\": \"https://github.com/ethereum/ethereum.js\",\n \"bugs\": {\n \"url\": \"https://github.com/ethereum/ethereum.js/issues\"\n },\n \"browserify\": {\n \"transform\": [\n [\n \"envify\",\n {\n \"NODE_ENV\": \"build\"\n }\n ],\n [\n \"unreachable-branch-transform\"\n ]\n ]\n },\n \"keywords\": [\n \"ethereum\",\n \"javascript\",\n \"API\"\n ],\n \"author\": \"ethdev.com\",\n \"authors\": [\n {\n \"name\": \"Jeffery Wilcke\",\n \"email\": \"jeff@ethdev.com\",\n \"url\": \"https://github.com/obscuren\"\n },\n {\n \"name\": \"Marek Kotewicz\",\n \"email\": \"marek@ethdev.com\",\n \"url\": \"https://github.com/debris\"\n },\n {\n \"name\": \"Marian Oancea\",\n \"email\": \"marian@ethdev.com\",\n \"url\": \"https://github.com/cubedro\"\n },\n {\n \"name\": \"Fabian Vogelsteller\",\n \"email\": \"fabian@ethdev.com\",\n \"homepage\": \"https://github.com/frozeman\"\n }\n ],\n \"license\": \"LGPL-3.0\"\n}\n",
"var web3 = require('./lib/web3');\nweb3.providers.HttpProvider = require('./lib/web3/httpprovider');\nweb3.providers.QtSyncProvider = require('./lib/web3/qtsync');\nweb3.eth.contract = require('./lib/web3/contract');\nweb3.abi = require('./lib/solidity/abi');\n\nmodule.exports = web3;\n" "var web3 = require('./lib/web3');\nweb3.providers.HttpProvider = require('./lib/web3/httpprovider');\nweb3.providers.QtSyncProvider = require('./lib/web3/qtsync');\nweb3.eth.contract = require('./lib/web3/contract');\nweb3.abi = require('./lib/solidity/abi');\n\nmodule.exports = web3;\n"
] ]
} }

File diff suppressed because one or more lines are too long