Skip to content

Commit 3b3946f

Browse files
committed
fix: update hardcoded version to 0.2.6
1 parent 553374e commit 3b3946f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thoth-cli",
3-
"version": "0.2.5",
3+
"version": "0.2.6",
44
"description": "𓅝 Astrological calculations from the command line. Swiss Ephemeris precision. Built for humans and agents.",
55
"author": "AKLO <aklo@aklolabs.com>",
66
"license": "MIT",

packages/cli/scripts/postinstall.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import https from 'https';
1212

1313
const __dirname = dirname(fileURLToPath(import.meta.url));
1414

15-
const VERSION = '0.2.5';
15+
const VERSION = '0.2.6';
1616
const REPO = 'aklo360/thoth-cli';
1717
const BASE_URL = `https://github.com/${REPO}/releases/download/v${VERSION}`;
1818

packages/cli/src/bin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Examples:
3535
thoth progressions --natal-date 1991-07-08 --natal-time 14:06 --city "New York" --target-date 2026-03-01
3636
thoth moon
3737
thoth ephemeris --body pluto`)
38-
.version('0.2.0');
38+
.version('0.2.6');
3939

4040
// Chart command
4141
program
@@ -725,7 +725,7 @@ program
725725

726726
// Banner
727727
console.log(chalk.dim(''));
728-
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.0'));
728+
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.6'));
729729
console.log(chalk.dim(''));
730730

731731
program.parse();

0 commit comments

Comments
 (0)