diff --git a/aurad-cli/README.md b/aurad-cli/README.md index 108628d..fa74517 100644 --- a/aurad-cli/README.md +++ b/aurad-cli/README.md @@ -16,7 +16,7 @@ $ npm install -g @idexio/idexd-cli $ idex COMMAND running command... $ idex (-v|--version|version) -@idexio/idexd-cli/0.2.0 darwin-x64 node-v11.14.0 +@idexio/idexd-cli/0.2.1 darwin-x64 node-v11.14.0 $ idex --help [COMMAND] USAGE $ idex COMMAND @@ -43,7 +43,7 @@ USAGE $ idex config ``` -_See code: [src/commands/config.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/config.js)_ +_See code: [src/commands/config.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/config.js)_ ## `idex help [COMMAND]` @@ -74,7 +74,7 @@ OPTIONS -n, --name=name name of log to print (idexd, parity or mysql) ``` -_See code: [src/commands/logs.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/logs.js)_ +_See code: [src/commands/logs.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/logs.js)_ ## `idex restart` @@ -88,7 +88,7 @@ OPTIONS -r, --rpc=rpc rpc server ``` -_See code: [src/commands/restart.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/restart.js)_ +_See code: [src/commands/restart.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/restart.js)_ ## `idex start` @@ -102,7 +102,7 @@ OPTIONS -r, --rpc=rpc rpc server ``` -_See code: [src/commands/start.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/start.js)_ +_See code: [src/commands/start.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/start.js)_ ## `idex status` @@ -113,7 +113,7 @@ USAGE $ idex status ``` -_See code: [src/commands/status.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/status.js)_ +_See code: [src/commands/status.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/status.js)_ ## `idex stop` @@ -124,7 +124,7 @@ USAGE $ idex stop ``` -_See code: [src/commands/stop.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/stop.js)_ +_See code: [src/commands/stop.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/stop.js)_ ## `idex up` @@ -135,5 +135,5 @@ USAGE $ idex up ``` -_See code: [src/commands/up.js](https://github.com/idexio/idexd/blob/v0.2.0/src/commands/up.js)_ +_See code: [src/commands/up.js](https://github.com/idexio/idexd/blob/v0.2.1/src/commands/up.js)_ diff --git a/aurad-cli/package-lock.json b/aurad-cli/package-lock.json index 4ce45a2..22fac60 100644 --- a/aurad-cli/package-lock.json +++ b/aurad-cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "@idexio/idexd-cli", - "version": "0.2.0-beta.1", + "version": "0.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/aurad-cli/package.json b/aurad-cli/package.json index ffe85b4..2993b36 100644 --- a/aurad-cli/package.json +++ b/aurad-cli/package.json @@ -1,6 +1,6 @@ { "name": "@idexio/idexd-cli", - "version": "0.2.0", + "version": "0.2.1", "bin": { "idex": "./bin/run" }, diff --git a/aurad-cli/src/commands/status.js b/aurad-cli/src/commands/status.js index d3b75f4..4ccede6 100644 --- a/aurad-cli/src/commands/status.js +++ b/aurad-cli/src/commands/status.js @@ -7,7 +7,7 @@ const Docker = require('../shared/docker'); const package_json = require('../../package.json'); const homedir = require('os').homedir(); const semver = require('semver'); -const registryUri = 'https://registry.npmjs.org/@auroradao/aurad-cli'; +const registryUri = 'https://registry.npmjs.org/@idexio/idexd-cli'; const { STAKING_HOST } = require('../shared/config'); class StatusCommand extends Command {