byterover-cli 0.3.4 → 0.3.5

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.
@@ -14,13 +14,9 @@ export async function handleUpdateNotification(deps) {
14
14
  return;
15
15
  }
16
16
  const { current, latest } = notifier.update;
17
- notifier.notify({
18
- defer: false,
19
- message: `Update available: ${current} → ${latest}`,
20
- });
21
17
  const shouldUpdate = await confirmPrompt({
22
18
  default: true,
23
- message: 'Would you like to update now?',
19
+ message: `Update available: ${current} → ${latest}. Would you like to update now?`,
24
20
  });
25
21
  if (shouldUpdate) {
26
22
  log('Updating byterover-cli...');
@@ -672,5 +672,5 @@
672
672
  ]
673
673
  }
674
674
  },
675
- "version": "0.3.4"
675
+ "version": "0.3.5"
676
676
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "byterover-cli",
3
3
  "description": "ByteRover's CLI",
4
- "version": "0.3.4",
4
+ "version": "0.3.5",
5
5
  "author": "ByteRover",
6
6
  "bin": {
7
7
  "brv": "./bin/run.js"