From 3a6e3a9ba01f58d3106573c5b3cb8e6167bde0bf Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 24 Dec 2014 11:15:20 -0300 Subject: [PATCH 1/2] fix remote reference in gulpfile.js --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 9e9e2a8..0b0da50 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -258,13 +258,13 @@ gulp.task('release:version-commit', function() { }); gulp.task('release:push-releases', function(cb) { - git.push('origin', 'releases', { + git.push('bitpay', 'releases', { args: '' }, cb); }); gulp.task('release:push', function(cb) { - git.push('origin', 'master', { + git.push('bitpay', 'master', { args: '' }, cb); }); @@ -273,7 +273,7 @@ gulp.task('release:push-tag', function(cb) { var pjson = require('./package.json'); var name = 'v' + pjson.version; git.tag(name, 'Release ' + name, function() { - git.push('origin', name, { + git.push('bitpay', name, { args: '--tags' }, cb); }); From e179c5406a5a072e485c2b940d58ddd7f0a27bb8 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Wed, 24 Dec 2014 11:23:03 -0300 Subject: [PATCH 2/2] Bump package version to 0.8.3 --- bower.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index f235fa2..82ceb6e 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "bitcore", "main": "browser/bitcore.min.js", - "version": "0.8.2", + "version": "0.8.3", "homepage": "http://bitcore.io", "authors": [ "BitPay, Inc." diff --git a/package.json b/package.json index 217b6ba..6bf740b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bitcore", - "version": "0.8.2", + "version": "0.8.3", "description": "A pure and powerful JavaScript Bitcoin library.", "author": "BitPay ", "main": "index.js",