mnemosyne-core 2.1.2 → 2.1.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.
package/dist/cli/index.js CHANGED
@@ -3635,7 +3635,7 @@ function getVersion() {
3635
3635
  const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
3636
3636
  return pkg.version;
3637
3637
  } catch {
3638
- return "2.1.0";
3638
+ return "2.1.3";
3639
3639
  }
3640
3640
  }
3641
3641
  }
@@ -7599,7 +7599,7 @@ var require_package = __commonJS({
7599
7599
  "package.json"(exports2, module2) {
7600
7600
  module2.exports = {
7601
7601
  name: "mnemosyne-core",
7602
- version: "2.1.2",
7602
+ version: "2.1.3",
7603
7603
  description: "Unified memory engine for AI agents \u2014 graph atoms, semantic search, and collaborative memory",
7604
7604
  logo: "logo.png",
7605
7605
  author: "Arman Aslanyan <aslanyanarman88@gmail.com> (https://www.linkedin.com/in/arman-aslanyan/)",
@@ -8947,7 +8947,7 @@ function getVersion2() {
8947
8947
  const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
8948
8948
  return pkg.version;
8949
8949
  } catch {
8950
- return "2.1.0";
8950
+ return "2.1.3";
8951
8951
  }
8952
8952
  }
8953
8953
  }
@@ -9545,7 +9545,7 @@ function getVersion3() {
9545
9545
  const pkg = JSON.parse(readFileSync8(resolve14(process.cwd(), "package.json"), "utf-8"));
9546
9546
  return pkg.version;
9547
9547
  } catch {
9548
- return "2.1.0";
9548
+ return "2.1.3";
9549
9549
  }
9550
9550
  }
9551
9551
  }
@@ -10680,7 +10680,7 @@ var PKG_VERSION = (() => {
10680
10680
  const pkg = JSON.parse(require("fs").readFileSync(require("path").resolve(__dirname, "../../package.json"), "utf-8"));
10681
10681
  return pkg.version;
10682
10682
  } catch {
10683
- return "2.1.0";
10683
+ return "2.1.3";
10684
10684
  }
10685
10685
  })();
10686
10686
  function handleHealth(store, pathname, method, res) {
@@ -11004,7 +11004,7 @@ var MnemosyneServer = class {
11004
11004
  const wss = new import_websocket_server.default({ server: this.httpServer });
11005
11005
  this.wsHandler = new WebSocketHandler(wss, this.store);
11006
11006
  }
11007
- const version = cfg?.server?.version || "2.1.0";
11007
+ const version = cfg?.server?.version || "2.1.3";
11008
11008
  this.httpServer.listen(port, () => {
11009
11009
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
11010
11010
  console.log(`Dashboard: http://${host}:${port}/dashboard`);
@@ -11062,7 +11062,7 @@ function getVersion4() {
11062
11062
  const { resolve: resolve14 } = require("path");
11063
11063
  return JSON.parse(readFileSync8(resolve14(__dirname, "../../package.json"), "utf-8")).version;
11064
11064
  } catch {
11065
- return "2.1.0";
11065
+ return "2.1.3";
11066
11066
  }
11067
11067
  }
11068
11068
  async function startCommand(options) {
@@ -11354,7 +11354,7 @@ program2.name("mnemosyne").description("Mnemosyne \u2014 Your exocortex").versio
11354
11354
  try {
11355
11355
  return require_package().version;
11356
11356
  } catch {
11357
- return "2.1.0";
11357
+ return "2.1.3";
11358
11358
  }
11359
11359
  })());
11360
11360
  program2.command("init").description("Initialize a new Mnemosyne workspace").option("-d, --data-dir <path>", "Data directory", "./data").option("-c, --config <path>", "Config file path").action(initCommand);