zencefyl 0.2.0 → 0.2.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.
package/dist/index.js CHANGED
@@ -2584,7 +2584,7 @@ function App({ engine, container }) {
2584
2584
  return /* @__PURE__ */ jsxs4(Box4, { flexDirection: "column", children: [
2585
2585
  messages.length === 0 && !isStreaming && /* @__PURE__ */ jsxs4(Box4, { marginBottom: 1, children: [
2586
2586
  /* @__PURE__ */ jsx4(Text4, { color: "green", bold: true, children: "zencefyl" }),
2587
- /* @__PURE__ */ jsx4(Text4, { dimColor: true, children: " v0.2.0 \xB7 type 'exit' to quit" })
2587
+ /* @__PURE__ */ jsx4(Text4, { dimColor: true, children: " v0.2.1 \xB7 type 'exit' to quit" })
2588
2588
  ] }),
2589
2589
  messages.map((msg, i) => /* @__PURE__ */ jsx4(MessageComponent, { message: msg }, i)),
2590
2590
  isStreaming && /* @__PURE__ */ jsxs4(Box4, { flexDirection: "column", marginBottom: 1, children: [
@@ -2729,7 +2729,7 @@ async function checkForUpdate() {
2729
2729
  async function main() {
2730
2730
  const args = process.argv.slice(2);
2731
2731
  if (args.includes("--version") || args.includes("-v")) {
2732
- process.stdout.write("0.2.0\n");
2732
+ process.stdout.write("0.2.1\n");
2733
2733
  process.exit(0);
2734
2734
  }
2735
2735
  if (args.includes("--help") || args.includes("-h")) {