@ferrflow/linux-arm 7.0.0 → 7.0.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.
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
+ <div align="center">
2
+
1
3
  # FerrFlow
2
4
 
5
+ **Universal semantic versioning for monorepos and classic repos.**
6
+
7
+ Reads your commit history, works out the right version bump, updates your version files,<br />
8
+ writes the changelog, and cuts the tagged release. Any language, any repo layout.
9
+
3
10
  [![Latest release](https://img.shields.io/github/v/release/FerrLabs/FerrFlow)](https://github.com/FerrLabs/FerrFlow/releases/latest)
4
11
  [![Quality Gate](https://sonar.ferrlabs.com/api/project_badges/measure?project=ferrflow&metric=alert_status&token=sqb_53f0d93466bd01a6c6a94a15125d5aa8390c67fa)](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
5
12
  [![Coverage](https://sonar.ferrlabs.com/api/project_badges/measure?project=ferrflow&metric=coverage&token=sqb_53f0d93466bd01a6c6a94a15125d5aa8390c67fa)](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
@@ -7,13 +14,20 @@
7
14
  [![Socket Badge](https://badge.socket.dev/npm/package/ferrflow/latest)](https://badge.socket.dev/npm/package/ferrflow/latest)
8
15
  [![OpenSSF Scorecard](https://api.scorecard.dev/projects/github.com/FerrLabs/FerrFlow/badge)](https://scorecard.dev/viewer/?uri=github.com/FerrLabs/FerrFlow)
9
16
 
10
- Universal semantic versioning for monorepos and classic repos.
17
+ [Documentation](https://ferrflow.com/docs) | [Changelog](https://ferrlabs.com/changelog/) | [GitHub App](https://github.com/apps/ferrflow)
11
18
 
12
- FerrFlow reads your commit history, determines the right version bump, updates your version files, generates a changelog, and creates a tagged release — for any language, any repo layout.
19
+ </div>
13
20
 
14
21
  ## Why FerrFlow?
15
22
 
16
- A single compiled binary with no runtime dependencies. Native monorepo support, multi-language versioning, and works with any repo layout.
23
+ One compiled binary, no runtime to install. Native monorepo support, 16 version-file formats
24
+ across every ecosystem below, and it works with whatever layout your repo already has.
25
+
26
+ ```bash
27
+ ferrflow release
28
+ ```
29
+
30
+ That is the whole release: bump, changelog, tag, GitHub release.
17
31
 
18
32
  ## Supported version files
19
33
 
@@ -33,7 +47,7 @@ A single compiled binary with no runtime dependencies. Native monorepo support,
33
47
  | `packageswift` | `Package.swift` | Swift | top-level `let <name>Version = "…"` |
34
48
  | `cabal` | `*.cabal` | Haskell | top-level `version:` field |
35
49
  | `cmake` | `CMakeLists.txt` | C / C++ | `VERSION` argument of `project()` |
36
- | `gomod` | `go.mod` | Go | git tag only no file write |
50
+ | `gomod` | `go.mod` | Go | git tag only, no file write |
37
51
  | `txt` | `VERSION`, `VERSION.txt` | Any | entire file content |
38
52
 
39
53
  ## Installation
@@ -138,7 +152,7 @@ ferrflow migrate # auto-detects .releaserc
138
152
  ferrflow migrate --from semantic-release
139
153
  ```
140
154
 
141
- It maps `tagFormat`, `branches`, and the common plugins (`changelog`, `exec`, `github`/`gitlab`) to their FerrFlow equivalents, and prints a summary of what mapped, what was ignored, and what needs manual review anything without a FerrFlow equivalent is surfaced, never guessed. JSON `.releaserc` is supported today; YAML `.releaserc` and JS `release.config.js` are reported as unsupported rather than mis-parsed.
155
+ It maps `tagFormat`, `branches`, and the common plugins (`changelog`, `exec`, `github`/`gitlab`) to their FerrFlow equivalents, and prints a summary of what mapped, what was ignored, and what needs manual review. Anything without a FerrFlow equivalent is surfaced, never guessed. JSON `.releaserc` is supported today; YAML `.releaserc` and JS `release.config.js` are reported as unsupported rather than mis-parsed.
142
156
 
143
157
  ### JSON Schema
144
158
 
@@ -550,12 +564,12 @@ steps:
550
564
  - uses: actions/checkout@v6
551
565
  with:
552
566
  fetch-depth: 0
553
- - uses: FerrLabs/FerrFlow@v6
567
+ - uses: FerrLabs/FerrFlow@v7
554
568
  with:
555
569
  bot: true
556
570
  ```
557
571
 
558
- That's it no `setup-node`, no extra dependencies. FerrFlow's Rust binary handles the OIDC exchange directly, so minimal self-hosted runners work out of the box.
572
+ That is the whole job. No `setup-node`, no extra dependencies. FerrFlow's Rust binary handles the OIDC exchange directly, so minimal self-hosted runners work out of the box.
559
573
 
560
574
  Three auth modes are supported: `bot: true` uses the hosted FerrFlow App (recommended); `token: <PAT>` uses a personal access token or your own GitHub App token (DIY); omitting both falls back to the workflow's `GITHUB_TOKEN` (simplest, but release events won't trigger downstream workflows).
561
575
 
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.0.0"
15
+ "version": "7.0.2"
16
16
  }