htn-tunnel 0.2.1 → 0.2.2

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/lib/install.js +2 -1
  2. package/package.json +1 -1
package/lib/install.js CHANGED
@@ -5,7 +5,8 @@ const os = require("os");
5
5
  const https = require("https");
6
6
  const { execSync } = require("child_process");
7
7
 
8
- const VERSION = require("../package.json").version;
8
+ // Binary version from GitHub Releases (may differ from npm package version).
9
+ const VERSION = "0.2.0";
9
10
  const REPO = "nhh0718/htn-tunnel";
10
11
 
11
12
  const platform = os.platform(); // darwin, linux, win32
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "htn-tunnel",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Self-hosted tunnel client — expose localhost to the internet",
5
5
  "bin": {
6
6
  "htn-tunnel": "./bin/htn-tunnel.js"