brew-tui 0.6.0 → 0.6.1

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/build/index.js +3 -3
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -4704,7 +4704,7 @@ function AccountView() {
4704
4704
  /* @__PURE__ */ jsx30(Box28, { marginTop: 1, children: /* @__PURE__ */ jsxs29(Text29, { color: COLORS.textSecondary, children: [
4705
4705
  status === "pro" ? `d ${t("hint_deactivate")}` : "",
4706
4706
  " ",
4707
- t("app_version", { version: "0.6.0" })
4707
+ t("app_version", { version: "0.6.1" })
4708
4708
  ] }) })
4709
4709
  ] });
4710
4710
  }
@@ -6045,7 +6045,7 @@ async function reportError(err, context = {}) {
6045
6045
  const config = await resolveConfig();
6046
6046
  if (!config.enabled || !config.endpoint) return;
6047
6047
  const machineId = await getMachineId4();
6048
- const version = true ? "0.6.0" : "unknown";
6048
+ const version = true ? "0.6.1" : "unknown";
6049
6049
  await postReport(buildReport("error", err, context, machineId, version), config);
6050
6050
  }
6051
6051
  async function installCrashReporter() {
@@ -6054,7 +6054,7 @@ async function installCrashReporter() {
6054
6054
  if (!config.enabled || !config.endpoint) return;
6055
6055
  _installed = true;
6056
6056
  const machineId = await getMachineId4();
6057
- const version = true ? "0.6.0" : "unknown";
6057
+ const version = true ? "0.6.1" : "unknown";
6058
6058
  process.on("uncaughtException", (err) => {
6059
6059
  void postReport(buildReport("fatal", err, { kind: "uncaughtException" }, machineId, version), config);
6060
6060
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brew-tui",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Brew-TUI — Visual TUI for Homebrew package management",
5
5
  "type": "module",
6
6
  "bin": {