@ferrflow/linux-arm64 7.6.0 → 7.7.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
@@ -69,7 +69,14 @@ npm install -D ferrflow
69
69
  **Docker**
70
70
 
71
71
  ```bash
72
- docker run ghcr.io/ferrlabs/ferrflow:latest check
72
+ docker run --rm -v "$PWD:/repo" ghcr.io/ferrlabs/ferrflow:latest check
73
+ ```
74
+
75
+ The image runs as a non-root user (`ferrflow`, uid 1000) and works on `/repo`.
76
+ If your checkout is owned by a different uid, pass your own:
77
+
78
+ ```bash
79
+ docker run --rm -u "$(id -u):$(id -g)" -v "$PWD:/repo" ghcr.io/ferrlabs/ferrflow:latest check
73
80
  ```
74
81
 
75
82
  **Pre-built binaries**
@@ -82,6 +89,9 @@ Download from [Releases](https://github.com/FerrLabs/FerrFlow/releases).
82
89
  # Preview what would be bumped
83
90
  ferrflow check
84
91
 
92
+ # Adjust the plan, then get the command that reproduces it
93
+ ferrflow plan --interactive
94
+
85
95
  # Run a release
86
96
  ferrflow release
87
97
 
@@ -92,6 +102,10 @@ ferrflow release --dry-run
92
102
  ferrflow release --force-version 2.0.0 # single repo
93
103
  ferrflow release --force-version api@3.0.0 # monorepo
94
104
 
105
+ # Repeatable in a monorepo, and packages can be left out entirely
106
+ ferrflow release --force-version core@3.0.0 --force-version api@2.5.0
107
+ ferrflow release --exclude web --exclude docs
108
+
95
109
  # Pre-release
96
110
  ferrflow release --channel beta
97
111
 
package/bin/ferrflow CHANGED
Binary file
package/package.json CHANGED
@@ -12,5 +12,5 @@
12
12
  "type": "git",
13
13
  "url": "git+https://github.com/FerrLabs/FerrFlow.git"
14
14
  },
15
- "version": "7.6.0"
15
+ "version": "7.7.1"
16
16
  }