Skip to content

Commit

Permalink
Merge pull request #33 from DIG-Network/release/v0.0.1-alpha.33
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.33
  • Loading branch information
MichaelTaylor3D authored Sep 26, 2024
2 parents abebe88 + 3fb917d commit 5356faf
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.33](https://github.com/DIG-Network/dig-cli/compare/v0.0.1-alpha.32...v0.0.1-alpha.33) (2024-09-26)


### Features

* you can use your hostname for the remote now ([1deb960](https://github.com/DIG-Network/dig-cli/commit/1deb9602c11835d3490d81ad163abab3469debe5))


### Bug Fixes

* cmd suggestion to use dignode instead of dig ([cdd299a](https://github.com/DIG-Network/dig-cli/commit/cdd299a607660a4e8d5395aeabd960b4e91d9162))
* cmd suggestion to use dignode instead of dig ([c603238](https://github.com/DIG-Network/dig-cli/commit/c6032384cec634cc9a471e11705f1cf62a276863))

### [0.0.1-alpha.32](https://github.com/DIG-Network/dig-cli/compare/v0.0.1-alpha.31...v0.0.1-alpha.32) (2024-09-26)

### [0.0.1-alpha.31](https://github.com/DIG-Network/dig-cli/compare/v0.0.1-alpha.30...v0.0.1-alpha.31) (2024-09-23)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dignetwork/dig-chia-cli",
"version": "0.0.1-alpha.32",
"version": "0.0.1-alpha.33",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/actions/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const login = async (username = "", password = "") => {
);
if (existingUserName) {
throw new Error(
'You are already logged in to this datastore. Run "dig logout" to login again'
'You are already logged in to this datastore. Run "dignode logout" to login again'
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/yargs/setupCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export async function setupCommands() {

// Set default command and help
parser
.scriptName('dig')
.scriptName('dignode')
.demandCommand(1, "You need at least one command before moving on")
.help()
.alias("h", "help")
Expand Down

0 comments on commit 5356faf

Please sign in to comment.