version 0.12.2 && gulp

This commit is contained in:
debris 2015-08-12 10:39:52 +02:00
parent ae479960b3
commit f18b532259
9 changed files with 14 additions and 14 deletions

View File

@ -1,7 +1,7 @@
{
"name": "web3",
"namespace": "ethereum",
"version": "0.12.1",
"version": "0.12.2",
"description": "Ethereum Compatible JavaScript API",
"main": [
"./dist/web3.js",

4
dist/web3-light.js vendored
View File

@ -2397,7 +2397,7 @@ module.exports = {
},{"bignumber.js":"bignumber.js","utf8":49}],21:[function(require,module,exports){
module.exports={
"version": "0.12.1"
"version": "0.12.2"
}
},{}],22:[function(require,module,exports){
@ -4299,7 +4299,7 @@ Iban.isValid = function (iban) {
* @returns {Boolean} true if it is, otherwise false
*/
Iban.prototype.isValid = function () {
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30})$/.test(this._iban) &&
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30,31})$/.test(this._iban) &&
mod9710(iso13616Prepare(this._iban)) === 1;
};

File diff suppressed because one or more lines are too long

4
dist/web3.js vendored
View File

@ -2397,7 +2397,7 @@ module.exports = {
},{"bignumber.js":"bignumber.js","utf8":49}],21:[function(require,module,exports){
module.exports={
"version": "0.12.1"
"version": "0.12.2"
}
},{}],22:[function(require,module,exports){
@ -4299,7 +4299,7 @@ Iban.isValid = function (iban) {
* @returns {Boolean} true if it is, otherwise false
*/
Iban.prototype.isValid = function () {
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30})$/.test(this._iban) &&
return /^XE[0-9]{2}(ETH[0-9A-Z]{13}|[0-9A-Z]{30,31})$/.test(this._iban) &&
mod9710(iso13616Prepare(this._iban)) === 1;
};

4
dist/web3.js.map vendored

File diff suppressed because one or more lines are too long

4
dist/web3.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,3 @@
{
"version": "0.12.1"
"version": "0.12.2"
}

View File

@ -1,7 +1,7 @@
/* jshint ignore:start */
Package.describe({
name: 'ethereum:web3',
version: '0.12.1',
version: '0.12.2',
summary: 'Ethereum JavaScript API, middleware to talk to a ethreum node over RPC',
git: 'https://github.com/ethereum/ethereum.js',
// By default, Meteor will default to using README.md for documentation.

View File

@ -1,7 +1,7 @@
{
"name": "web3",
"namespace": "ethereum",
"version": "0.12.1",
"version": "0.12.2",
"description": "Ethereum JavaScript API, middleware to talk to a ethereum node over RPC",
"main": "./index.js",
"directories": {