Bump version

This commit is contained in:
Chris Kleeschulte 2017-10-20 13:22:55 -04:00
parent c3ddeaff0c
commit f62100d37d
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F
3 changed files with 17 additions and 13 deletions

16
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "bitcore",
"version": "5.0.0-beta.22",
"version": "5.0.0-beta.23",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -465,9 +465,9 @@
}
},
"bitcore-node": {
"version": "5.0.0-beta.22",
"resolved": "https://registry.npmjs.org/bitcore-node/-/bitcore-node-5.0.0-beta.22.tgz",
"integrity": "sha512-SqNG5WErt/UQlB3vAa2bNk9GUJ9d6i3TY4612WdYPafug/vReheTGuyjIpPles1Lc1Q3yB2XmyIyBwvZFD5bmA==",
"version": "5.0.0-beta.23",
"resolved": "https://registry.npmjs.org/bitcore-node/-/bitcore-node-5.0.0-beta.23.tgz",
"integrity": "sha512-zTmvDBXstViY/MBlmca4OIGdNjNfCyrjAvh3OFsJzS9X6OvAY3mFiREi2zn/sm0zYiBezxCta4FMODUOX2X0Ug==",
"requires": {
"async": "2.5.0",
"bcoin": "github:bitpay/bcoin#46ecd2c4ed3b7fbcadd9cfe10b0f5d64e4c5088d",
@ -1621,9 +1621,9 @@
"integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4="
},
"insight-api": {
"version": "5.0.0-beta.22",
"resolved": "https://registry.npmjs.org/insight-api/-/insight-api-5.0.0-beta.22.tgz",
"integrity": "sha512-ZDY4OAyS9oAEvXCvFH7J1QXkddByU/fdFgveMNTx8szupmjYXuCheu1lopXCnbUAicVPoMsaTHOg1k8EeSjVuA==",
"version": "5.0.0-beta.23",
"resolved": "https://registry.npmjs.org/insight-api/-/insight-api-5.0.0-beta.23.tgz",
"integrity": "sha512-QH8B27YjFwo0jkk6RGNx2wT6I/seghnG7AElwwPntF8QiLjC7OLePuk9TqY2KVlKOCKnt67w9sudcr1mdEBbDw==",
"requires": {
"JSONStream": "1.3.1",
"async": "2.5.0",
@ -1646,7 +1646,7 @@
}
},
"insight-ui": {
"version": "github:bitpay/insight#a69ef92e3114be898bb0ce6f2a003166b2a84a26"
"version": "github:bitpay/insight#3ff0341ad5be3e094d91f02c6a47474e5f572c92"
},
"ipaddr.js": {
"version": "1.4.0",

View File

@ -1,6 +1,6 @@
{
"name": "bitcore",
"version": "5.0.0-beta.22",
"version": "5.0.0-beta.23",
"description": "A platform to build bitcoin and blockchain-based applications.",
"engines": {
"node": ">=8.0.0"
@ -37,9 +37,9 @@
},
"dependencies": {
"bitcore-lib": "5.0.0-beta.1",
"bitcore-node": "5.0.0-beta.22",
"insight-api": "5.0.0-beta.22",
"insight-ui": "bitpay/insight#v5.0.0-beta.22"
"bitcore-node": "5.0.0-beta.23",
"insight-api": "5.0.0-beta.23",
"insight-ui": "bitpay/insight#v5.0.0-beta.23"
},
"license": "MIT",
"devDependencies": {

View File

@ -41,6 +41,7 @@ function bitcoreNode() {
sleep 2
pushd "${bitcoreNodeDir}"
sudo rm -fr node_modules
bump_version
npm install
@ -90,6 +91,7 @@ function insightApi() {
sleep 2
pushd "${insightApiDir}"
sudo rm -fr node_modules
bump_version
npm install
@ -139,6 +141,7 @@ function insightUi() {
sleep 2
pushd "${insightUIDir}"
sudo rm -fr node_modules
bump_version
npm install
@ -188,6 +191,7 @@ function bitcore() {
sleep 2
pushd "${bitcoreDir}"
sudo rm -fr node_modules
bump_version
set_deps
@ -239,7 +243,7 @@ echo "Assuming projects at ${HOME}/source..."
releases="${2}"
if [ -z "${releases}" ]; then
#bitcoreNode
bitcoreNode
insightApi
insightUi
bitcore