@holochain/hc-spin 0.300.0 → 0.300.1

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/README.md CHANGED
@@ -20,6 +20,14 @@ To install the latest version compatible with **holochain 0.2.x**:
20
20
  npm install --save-dev @holochain/hc-spin@">=0.200.0 <0.300.0"
21
21
  ```
22
22
 
23
+ To install the latest version compatible with **holochain 0.3.x**:
24
+
25
+ ⚠️ Requires `@holochain/client 0.17.0-dev.5` or newer ⚠️
26
+
27
+ ```
28
+ npm install --save-dev @holochain/hc-spin@">=0.300.0 <0.400.0"
29
+ ```
30
+
23
31
  ## Usage (holochain 0.2)
24
32
 
25
33
  ```
@@ -11804,7 +11804,7 @@ const menu = electron.Menu.buildFromTemplate([
11804
11804
  ]);
11805
11805
  const rustUtils = require("@holochain/hc-spin-rust-utils");
11806
11806
  const cli = new commander.Command();
11807
- cli.name("hc-spin").description("CLI to run Holochain aps during development.").version(`0.300.0 (for holochain 0.3.x)`).argument(
11807
+ cli.name("hc-spin").description("CLI to run Holochain aps during development.").version(`0.300.1 (for holochain 0.3.x)`).argument(
11808
11808
  "<path>",
11809
11809
  "Path to .webhapp or .happ file to launch. If a .happ file is passed, either a UI path must be specified via --ui-path or a port pointing to a localhost server via --ui-port"
11810
11810
  ).option(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@holochain/hc-spin",
3
- "version": "0.300.0",
3
+ "version": "0.300.1",
4
4
  "description": "CLI to run Holochain aps during development.",
5
5
  "author": "matthme",
6
6
  "homepage": "https://developer.holochain.org",
package/src/main/index.ts CHANGED
@@ -28,7 +28,7 @@ const cli = new Command();
28
28
  cli
29
29
  .name('hc-spin')
30
30
  .description('CLI to run Holochain aps during development.')
31
- .version(`0.300.0 (for holochain 0.3.x)`)
31
+ .version(`0.300.1 (for holochain 0.3.x)`)
32
32
  .argument(
33
33
  '<path>',
34
34
  'Path to .webhapp or .happ file to launch. If a .happ file is passed, either a UI path must be specified via --ui-path or a port pointing to a localhost server via --ui-port',