Skip to content

Commit 94a3bd7

Browse files
committed
fix: bundle kerykeion sweph data for Chiron (v0.2.12)
1 parent 6ab72b3 commit 94a3bd7

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
- name: Build binary
3838
run: |
3939
cd packages/core
40-
pyinstaller --onefile --name thoth-core thoth_core/cli.py
40+
pyinstaller --onefile --name thoth-core \
41+
--collect-data kerykeion \
42+
thoth_core/cli.py
4143
4244
- name: Rename and compress binary (Unix)
4345
if: matrix.os != 'windows-latest'

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.11",
3+
"version": "0.2.12",
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
@@ -14,7 +14,7 @@ import https from 'https';
1414

1515
const __dirname = dirname(fileURLToPath(import.meta.url));
1616

17-
const VERSION = '0.2.10';
17+
const VERSION = '0.2.12';
1818
const REPO = 'aklo360/thoth-cli';
1919

2020
// Use jsDelivr CDN for faster downloads (mirrors GitHub releases)

packages/cli/src/bin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ EPHEMERIS & MOON
8080
REFERENCE
8181
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
8282
thoth key # full symbol reference`)
83-
.version('0.2.11');
83+
.version('0.2.12');
8484

8585
// Chart command
8686
program
@@ -886,7 +886,7 @@ program
886886

887887
// Banner
888888
console.log(chalk.dim(''));
889-
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.10'));
889+
console.log(chalk.yellow(' 𓅝') + chalk.dim(' thoth-cli v0.2.12'));
890890
console.log(chalk.dim(''));
891891

892892
program.parse();

0 commit comments

Comments
 (0)