mnemosyne-core 2.1.1 → 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.
@@ -3817,7 +3817,7 @@ function getVersion2() {
3817
3817
  const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
3818
3818
  return pkg.version;
3819
3819
  } catch {
3820
- return "2.1.0";
3820
+ return "2.1.3";
3821
3821
  }
3822
3822
  }
3823
3823
  }
@@ -4368,7 +4368,7 @@ function getVersion() {
4368
4368
  const pkg = JSON.parse(readFileSync5(resolve7(process.cwd(), "package.json"), "utf-8"));
4369
4369
  return pkg.version;
4370
4370
  } catch {
4371
- return "2.1.0";
4371
+ return "2.1.3";
4372
4372
  }
4373
4373
  }
4374
4374
  }
@@ -5500,7 +5500,7 @@ var PKG_VERSION = (() => {
5500
5500
  const pkg = JSON.parse(require("fs").readFileSync(require("path").resolve(__dirname, "../../package.json"), "utf-8"));
5501
5501
  return pkg.version;
5502
5502
  } catch {
5503
- return "2.1.0";
5503
+ return "2.1.3";
5504
5504
  }
5505
5505
  })();
5506
5506
  function handleHealth(store, pathname, method, res) {
@@ -7206,7 +7206,7 @@ var MnemosyneServer = class {
7206
7206
  const wss = new import_websocket_server.default({ server: this.httpServer });
7207
7207
  this.wsHandler = new WebSocketHandler(wss, this.store);
7208
7208
  }
7209
- const version = cfg?.server?.version || "2.1.0";
7209
+ const version = cfg?.server?.version || "2.1.3";
7210
7210
  this.httpServer.listen(port, () => {
7211
7211
  console.log(`Mnemosyne v${version} \u2014 port ${port}`);
7212
7212
  console.log(`Dashboard: http://${host}:${port}/dashboard`);