Skip to content

Commit 5356faf

Browse files
Merge pull request #33 from DIG-Network/release/v0.0.1-alpha.33
Release/v0.0.1 alpha.33
2 parents abebe88 + 3fb917d commit 5356faf

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
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.
44

5+
### [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)
6+
7+
8+
### Features
9+
10+
* you can use your hostname for the remote now ([1deb960](https://github.com/DIG-Network/dig-cli/commit/1deb9602c11835d3490d81ad163abab3469debe5))
11+
12+
13+
### Bug Fixes
14+
15+
* cmd suggestion to use dignode instead of dig ([cdd299a](https://github.com/DIG-Network/dig-cli/commit/cdd299a607660a4e8d5395aeabd960b4e91d9162))
16+
* cmd suggestion to use dignode instead of dig ([c603238](https://github.com/DIG-Network/dig-cli/commit/c6032384cec634cc9a471e11705f1cf62a276863))
17+
518
### [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)
619

720
### [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)

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dignetwork/dig-chia-cli",
3-
"version": "0.0.1-alpha.32",
3+
"version": "0.0.1-alpha.33",
44
"description": "",
55
"type": "commonjs",
66
"main": "./dist/index.js",

src/actions/login.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const login = async (username = "", password = "") => {
2323
);
2424
if (existingUserName) {
2525
throw new Error(
26-
'You are already logged in to this datastore. Run "dig logout" to login again'
26+
'You are already logged in to this datastore. Run "dignode logout" to login again'
2727
);
2828
}
2929

src/yargs/setupCommands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export async function setupCommands() {
3737

3838
// Set default command and help
3939
parser
40-
.scriptName('dig')
40+
.scriptName('dignode')
4141
.demandCommand(1, "You need at least one command before moving on")
4242
.help()
4343
.alias("h", "help")

0 commit comments

Comments
 (0)