Skip to content

Commit e0c1445

Browse files
authored
Merge pull request #8 from Rikthepixel/release/0.6.0
Bump version to 0.6.0
2 parents db67a85 + c3b24d8 commit e0c1445

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "termz",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Setup terminals on your own terms",
55
"author": "RikThePixel",
66
"license": "GPL-3.0",
@@ -59,4 +59,4 @@
5959
"CLI",
6060
"terminal"
6161
]
62-
}
62+
}

src/index.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
import { Command } from "commander";
22
import { openCommand } from "./commands/open";
33
// import { createCommand } from "./commands/create";
4+
import { version } from "../package.json";
45

56
const program = new Command("termz")
67
.description("Setup terminal sessions with ease")
7-
.version("0.5.0", "-v, --version")
8+
.version(version, "-v, --version")
89
.option("--quiet", "Prevents unnecessary output", false)
910
.option("--verbose", "Logs everything, helpful for debugging", false);
1011

1112
program.addCommand(openCommand, { isDefault: true });
1213
//.addCommand(createCommand);
1314

14-
program.parse();
15+
program.parse();

0 commit comments

Comments
 (0)