thinkinglanguage 0.3.5 → 0.3.6

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.
Files changed (2) hide show
  1. package/install.js +1 -1
  2. package/package.json +1 -1
package/install.js CHANGED
@@ -8,7 +8,7 @@ const https = require("https");
8
8
  const os = require("os");
9
9
  const zlib = require("zlib");
10
10
 
11
- const RELEASE_VERSION = "v0.3.2";
11
+ const RELEASE_VERSION = "v0.3.6";
12
12
  const REPO = "mplusm/thinkinglanguage";
13
13
  const NATIVE_DIR = path.join(__dirname, "native");
14
14
  const BIN_PATH = path.join(NATIVE_DIR, os.platform() === "win32" ? "tl.exe" : "tl");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "thinkinglanguage",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "A purpose-built language for Data Engineering & AI",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {