@plaud-ai/cli 0.3.2 → 0.3.3

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/dist/index.js +6 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -20356,7 +20356,7 @@ function isNewer(current, latest) {
20356
20356
  return false;
20357
20357
  }
20358
20358
  var updateCommand = new Command("update").description("Check npm for the latest Plaud CLI and print the upgrade command").action(async () => {
20359
- const current = "0.3.2";
20359
+ const current = "0.3.3";
20360
20360
  const spinner = ora("Checking npm for latest version...").start();
20361
20361
  const latest = await fetchLatestVersion();
20362
20362
  spinner.stop();
@@ -20411,10 +20411,10 @@ async function checkForUpdate(current) {
20411
20411
  return isNewer(current, latest) ? latest : null;
20412
20412
  }
20413
20413
  var versionCommand = new Command2("version").description("Show CLI version information").action(async () => {
20414
- const current = "0.3.2";
20414
+ const current = "0.3.3";
20415
20415
  console.log(`plaud ${current}`);
20416
- if ("cebd8b5") console.log(`commit ${"cebd8b5"}`);
20417
- if ("2026-06-12T06:59:36.525Z") console.log(`built ${"2026-06-12T06:59:36.525Z"}`);
20416
+ if ("76e2306") console.log(`commit ${"76e2306"}`);
20417
+ if ("2026-06-26T02:33:38.768Z") console.log(`built ${"2026-06-26T02:33:38.768Z"}`);
20418
20418
  if (current === "unknown") return;
20419
20419
  const newer = await checkForUpdate(current);
20420
20420
  if (newer) {
@@ -21637,7 +21637,7 @@ async function runWizard() {
21637
21637
  try {
21638
21638
  await initTelemetry({
21639
21639
  surface: "cli",
21640
- appVersion: "0.3.2"
21640
+ appVersion: "0.3.3"
21641
21641
  });
21642
21642
  } catch {
21643
21643
  }
@@ -21646,7 +21646,7 @@ async function notifyUpdate() {
21646
21646
  if (sub === "version" || sub === "update") return;
21647
21647
  if (process.env.PLAUD_NO_UPDATE_NOTIFIER) return;
21648
21648
  if (!process.stderr.isTTY) return;
21649
- const current = "0.3.2";
21649
+ const current = "0.3.3";
21650
21650
  if (current === "0.0.0") return;
21651
21651
  try {
21652
21652
  const newer = await checkForUpdate(current);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plaud-ai/cli",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "plaud": "dist/index.js"