@hegeldev/hegel 0.2.2 → 0.2.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/session.d.ts +1 -1
- package/dist/session.js +3 -3
- package/package.json +1 -1
package/dist/session.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* @packageDocumentation
|
|
8
8
|
*/
|
|
9
9
|
import { Connection, Stream } from "./connection.js";
|
|
10
|
-
export declare const HEGEL_SERVER_VERSION = "0.
|
|
10
|
+
export declare const HEGEL_SERVER_VERSION = "0.9.1";
|
|
11
11
|
export declare class HegelSession {
|
|
12
12
|
readonly connection: Connection;
|
|
13
13
|
private _controlStream;
|
package/dist/session.js
CHANGED
|
@@ -11,9 +11,9 @@ import * as fs from "node:fs";
|
|
|
11
11
|
import { Connection } from "./connection.js";
|
|
12
12
|
import { HANDSHAKE_STRING } from "./protocol.js";
|
|
13
13
|
import { findUv } from "./uv.js";
|
|
14
|
-
export const HEGEL_SERVER_VERSION = "0.
|
|
15
|
-
const SUPPORTED_PROTOCOL_MIN = "0.
|
|
16
|
-
const SUPPORTED_PROTOCOL_MAX = "0.
|
|
14
|
+
export const HEGEL_SERVER_VERSION = "0.9.1";
|
|
15
|
+
const SUPPORTED_PROTOCOL_MIN = "0.15";
|
|
16
|
+
const SUPPORTED_PROTOCOL_MAX = "0.15";
|
|
17
17
|
const HEGEL_SERVER_COMMAND_ENV = "HEGEL_SERVER_COMMAND";
|
|
18
18
|
const HEGEL_SERVER_DIR = ".hegel";
|
|
19
19
|
function parseVersion(s) {
|