otterly 0.3.1 → 0.3.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.
package/dist/cli.js CHANGED
@@ -17,7 +17,7 @@ const { values, positionals } = parseArgs({
17
17
  });
18
18
  const command = positionals[0] || "serve";
19
19
  if (values.version) {
20
- console.log("0.3.1");
20
+ console.log("0.3.2");
21
21
  process.exit(0);
22
22
  }
23
23
  if (values.help || command === "help") {
@@ -114,7 +114,7 @@ export async function startApiServer(opts = {}) {
114
114
  }
115
115
  // GET / — server info
116
116
  if (req.method === "GET" && path === "/") {
117
- jsonResponse(res, 200, { name: "otterly", version: "0.3.1", playground: "/playground" });
117
+ jsonResponse(res, 200, { name: "otterly", version: "0.3.2", playground: "/playground" });
118
118
  return;
119
119
  }
120
120
  // ── POST routes: auth → rate limit → circuit breaker → queue ──