Bumped version.

This commit is contained in:
Chris Kleeschulte 2017-11-09 22:03:13 -05:00
parent 1956bdc8a8
commit 3b2fbbf443
No known key found for this signature in database
GPG Key ID: 33195D27EF6BDB7F
3 changed files with 16 additions and 16 deletions

16
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "bitcore",
"version": "5.0.0-beta.40",
"version": "5.0.0-beta.41",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -466,9 +466,9 @@
}
},
"bitcore-node": {
"version": "5.0.0-beta.40",
"resolved": "https://registry.npmjs.org/bitcore-node/-/bitcore-node-5.0.0-beta.40.tgz",
"integrity": "sha512-xGo0eTwax3y0GsYrsfwVpxDBwjaj6JWjTo7tUi313WLdwvS8jyQiLWn41ehObXDvSJNE6aRdsFAmQgWBAf8bNg==",
"version": "5.0.0-beta.41",
"resolved": "https://registry.npmjs.org/bitcore-node/-/bitcore-node-5.0.0-beta.41.tgz",
"integrity": "sha512-7vHcfm7CKPQOROQvNoY742gpxqYJazdPDpqFgdxftOGMz9htVkm7xtEg9Gxyzv/as2za2SOYEnn7QTH0JqCygg==",
"requires": {
"async": "2.5.0",
"bcoin": "github:bitpay/bcoin#46ecd2c4ed3b7fbcadd9cfe10b0f5d64e4c5088d",
@ -1632,9 +1632,9 @@
"integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4="
},
"insight-api": {
"version": "5.0.0-beta.40",
"resolved": "https://registry.npmjs.org/insight-api/-/insight-api-5.0.0-beta.40.tgz",
"integrity": "sha512-5NYz5fDjfqvqtupoNNrCCCuVwQ5KQmTsmatx+HPriqYC0vWNFu435AYpAk8ja2V6F9JaeBE41xJQiRZOUg4AYQ==",
"version": "5.0.0-beta.41",
"resolved": "https://registry.npmjs.org/insight-api/-/insight-api-5.0.0-beta.41.tgz",
"integrity": "sha512-E+CW77Blbm9sBo0YwTuBoRUHoGrH2p9oG6nBTyF86t6Wc+bui6593ZcDoxp/9c07WzIyqy2jB7MHExQ/9GzI1A==",
"requires": {
"JSONStream": "1.3.1",
"async": "2.5.0",
@ -1657,7 +1657,7 @@
}
},
"insight-ui": {
"version": "github:bitpay/insight#f41fb29e263e7252d78dcc9a68e87250ef1c2e6a"
"version": "github:bitpay/insight#24426b73370d60af2ab087125e03cd247b744305"
},
"ipaddr.js": {
"version": "1.4.0",

View File

@ -1,6 +1,6 @@
{
"name": "bitcore",
"version": "5.0.0-beta.40",
"version": "5.0.0-beta.41",
"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.40",
"insight-api": "5.0.0-beta.40",
"insight-ui": "bitpay/insight#v5.0.0-beta.40"
"bitcore-node": "5.0.0-beta.41",
"insight-api": "5.0.0-beta.41",
"insight-ui": "bitpay/insight#v5.0.0-beta.41"
},
"license": "MIT",
"devDependencies": {

View File

@ -13,13 +13,13 @@ bitcoreNodeDir="${HOME}/source/bitcore-node"
# given a string tag, make signed commits, push to relevant repos, create signed tags and publish to npm
bump_version () {
sed -i '' -e "s/\"version\"\: .*$/\"version\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"version\"\: .*$/\"version\"\: \"${shortTag}\",/g" package.json
}
set_deps () {
sed -i '' -e "s/\"bitcore-node\"\: .*$/\"bitcore-node\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"insight-api\"\: .*$/\"insight-api\"\: \"${shortTag}\",/g" package.json
sed -i '' -e "s/\"insight-ui\"\: .*$/\"insight-ui\"\: \"bitpay\/insight\#${tag}\"/g" package.json
sed -i'' -e "s/\"bitcore-node\"\: .*$/\"bitcore-node\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"insight-api\"\: .*$/\"insight-api\"\: \"${shortTag}\",/g" package.json
sed -i'' -e "s/\"insight-ui\"\: .*$/\"insight-ui\"\: \"bitpay\/insight\#${tag}\"/g" package.json
}
tag="${1}"