@johpaz/hive-cli 0.1.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.ts +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@johpaz/hive-cli",
3
- "version": "0.1.1",
3
+ "version": "1.0.2",
4
4
  "description": "Hive CLI — Command line interface for the Hive AI Gateway",
5
5
  "bin": {
6
6
  "hive": "src/index.ts"
@@ -14,7 +14,7 @@
14
14
  "test": "bun test"
15
15
  },
16
16
  "dependencies": {
17
- "@johpaz/hive-core": "workspace:*"
17
+ "@johpaz/hive-core": "^1.0.2"
18
18
  },
19
19
  "devDependencies": {
20
20
  "typescript": "latest",
package/src/index.ts CHANGED
@@ -13,7 +13,7 @@ async function main(): Promise<void> {
13
13
  let command = args[0] ?? "help";
14
14
 
15
15
  if (command === "--version" || command === "-v") {
16
- console.log("Hive v0.1.0");
16
+ console.log("Hive v1.0.2");
17
17
  process.exit(0);
18
18
  }
19
19
 
@@ -39,7 +39,7 @@ async function main(): Promise<void> {
39
39
  ║ ██║ ██║██║ ╚████╔╝ ███████╗ ║
40
40
  ║ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚══════╝ ║
41
41
  ║ ║
42
- ║ Personal AI Gateway — v0.1.0
42
+ ║ Personal AI Gateway — v1.0.2
43
43
  ╚════════════════════════════════════════════╝
44
44
  `);
45
45
 
@@ -58,7 +58,7 @@ async function main(): Promise<void> {
58
58
  }
59
59
 
60
60
  case "version": {
61
- console.log("Hive v0.1.0");
61
+ console.log("Hive v1.0.2");
62
62
  break;
63
63
  }
64
64