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.
@@ -3823,7 +3823,7 @@ function getVersion2() {
3823
3823
  const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
3824
3824
  return pkg.version;
3825
3825
  } catch {
3826
- return "2.1.0";
3826
+ return "2.1.3";
3827
3827
  }
3828
3828
  }
3829
3829
  }
@@ -4364,7 +4364,7 @@ function getVersion() {
4364
4364
  const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
4365
4365
  return pkg.version;
4366
4366
  } catch {
4367
- return "2.1.0";
4367
+ return "2.1.3";
4368
4368
  }
4369
4369
  }
4370
4370
  }
@@ -5496,7 +5496,7 @@ var PKG_VERSION = (() => {
5496
5496
  const pkg = JSON.parse(__require("fs").readFileSync(__require("path").resolve(__dirname, "../../package.json"), "utf-8"));
5497
5497
  return pkg.version;
5498
5498
  } catch {
5499
- return "2.1.0";
5499
+ return "2.1.3";
5500
5500
  }
5501
5501
  })();
5502
5502
  function handleHealth(store, pathname, method, res) {
@@ -7202,7 +7202,7 @@ var MnemosyneServer = class {
7202
7202
  const wss = new import_websocket_server.default({ server: this.httpServer });
7203
7203
  this.wsHandler = new WebSocketHandler(wss, this.store);
7204
7204
  }
7205
- const version = cfg?.server?.version || "2.1.0";
7205
+ const version = cfg?.server?.version || "2.1.3";
7206
7206
  this.httpServer.listen(port, () => {
7207
7207
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
7208
7208
  console.log(`Dashboard: http://${host}:${port}/dashboard`);