Bumped version.

This commit is contained in:
Chris Kleeschulte 2017-11-13 14:28:07 -05:00
parent 6a7b65ce19
commit 10257f7195
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.42",
"version": "5.0.0-beta.43",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -487,9 +487,9 @@
}
},
"bitcore-node": {
"version": "5.0.0-beta.42",
"resolved": "https://registry.npmjs.org/bitcore-node/-/bitcore-node-5.0.0-beta.42.tgz",
"integrity": "sha512-y7YjlMkH7uG6k0eY5CC7f2QxS2Lz0k89rTv60fAJLnBZ1+xgKXjd29r2cpOE3KX+qLBGkl+ALeZ1Q0Krir1MTg==",
"version": "5.0.0-beta.43",
"resolved": "https://registry.npmjs.org/bitcore-node/-/bitcore-node-5.0.0-beta.43.tgz",
"integrity": "sha512-8L6mmQqrv5VN1oCeihWogd/7uACFkv332pmzQbSeAm6e3QhXTUrDuHMpEk/BFTuns4w/bqQCgZgHV5TnhxBaPg==",
"requires": {
"async": "2.5.0",
"bcoin": "github:bitpay/bcoin#46ecd2c4ed3b7fbcadd9cfe10b0f5d64e4c5088d",
@ -1666,9 +1666,9 @@
"integrity": "sha1-BTfLedr1m1mhpRff9wbIbsA5Fi4="
},
"insight-api": {
"version": "5.0.0-beta.42",
"resolved": "https://registry.npmjs.org/insight-api/-/insight-api-5.0.0-beta.42.tgz",
"integrity": "sha512-HuAzVUvyi0Fn9lUkSPZwyyl+u39cHF0VxN/+TW3MpEAum1+P3rlUG83B53JGXdBdb6UvhsTugI5EtWdaBESTnQ==",
"version": "5.0.0-beta.43",
"resolved": "https://registry.npmjs.org/insight-api/-/insight-api-5.0.0-beta.43.tgz",
"integrity": "sha512-evRqgmjDi36CTv1bZS/7Y/ah6RIsWFFfnkzH6ardtCn3GFv/2pLAilfy0JdqaRSD6pufbcxcm/k3X5A8yQOSFA==",
"requires": {
"JSONStream": "1.3.1",
"async": "2.5.0",
@ -1692,7 +1692,7 @@
}
},
"insight-ui": {
"version": "github:bitpay/insight#51d35662037902e407bfcd0d03e4de80434e8325"
"version": "github:bitpay/insight#aef5a88dd2b94e52eb3382cc776f793258087b57"
},
"ipaddr.js": {
"version": "1.4.0",

View File

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