@holochain/hc-spin 0.600.0-dev.0 → 0.600.0-rc.0

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.
@@ -10,8 +10,14 @@ jobs:
10
10
  # Checks out a copy of your repository on the ubuntu-latest machine
11
11
  - uses: actions/checkout@v3
12
12
 
13
- - name: Install dependencies and build
14
- run: yarn && yarn build
13
+ - name: Install dependencies
14
+ run: yarn
15
+
16
+ - name: Lint
17
+ run: yarn lint:check
18
+
19
+ - name: Build
20
+ run: yarn build
15
21
 
16
22
  ci_pass:
17
23
  if: ${{ always() }}
package/CHANGELOG.md CHANGED
@@ -9,6 +9,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
9
9
  ### Changed
10
10
  ### Removed
11
11
 
12
+ ## 2025-11-06: v0.600.0-rc.0
13
+
14
+ ### Added
15
+ - A new argument `--target-arc-factor` to support overriding the conductor configuration `network.target_arc_factor` in all launched conductors.
16
+
17
+ ### Fixed
18
+ - Fixed development environment setup and developer documentation outlining how to use it.
19
+
20
+ ### Changed
21
+ - Check linting in CI workflow
22
+
12
23
  ## 2025-10-13: v0.600.0-dev.0
13
24
 
14
25
  ### Changed