@ferrflow/win32-arm64 7.0.5 → 7.3.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 +12 -4
- package/bin/ferrflow.exe +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
**Universal semantic versioning for monorepos and classic repos.**
|
|
6
6
|
|
|
7
|
-
Reads your
|
|
8
|
-
writes the changelog, and cuts the tagged release. Any language, any repo layout.
|
|
7
|
+
Reads your [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/), works out the right version bump,<br />
|
|
8
|
+
updates your version files, writes the changelog, and cuts the tagged release. Any language, any repo layout.
|
|
9
9
|
|
|
10
10
|
[](https://github.com/FerrLabs/FerrFlow/releases/latest)
|
|
11
|
+
[](https://www.conventionalcommits.org/en/v1.0.0/)
|
|
11
12
|
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
12
|
-
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
14
|
+
[](https://sonar.ferrlabs.com/dashboard?id=ferrflow)
|
|
13
15
|
[](LICENSE)
|
|
14
16
|
[](https://badge.socket.dev/npm/package/ferrflow/latest)
|
|
15
17
|
[](https://scorecard.dev/viewer/?uri=github.com/FerrLabs/FerrFlow)
|
|
@@ -520,7 +522,7 @@ Hook commands receive environment variables: `FERRFLOW_PACKAGE`, `FERRFLOW_OLD_V
|
|
|
520
522
|
|
|
521
523
|
## Conventional Commits
|
|
522
524
|
|
|
523
|
-
FerrFlow
|
|
525
|
+
FerrFlow reads [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/) to decide how far to bump. The spec is the contract between your history and your version numbers: write the prefix, and the bump, the changelog section and the tag follow from it.
|
|
524
526
|
|
|
525
527
|
| Prefix | Bump |
|
|
526
528
|
|--------|------|
|
|
@@ -529,6 +531,12 @@ FerrFlow follows the [Conventional Commits](https://www.conventionalcommits.org/
|
|
|
529
531
|
| `feat!:`, `BREAKING CHANGE` | major |
|
|
530
532
|
| `chore:`, `docs:`, `ci:` | none |
|
|
531
533
|
|
|
534
|
+
The defaults are deliberately permissive, so a repo that never enforced the spec still gets sensible bumps: capitalised and slash-separated variants (`Feat:`, `Feat/`, `feature:`, `Fix/`, `Perf:`, `Refactor/`, and so on) are accepted alongside the canonical forms. If your history uses different conventions, remap them with [`commitFormats`](https://ferrflow.com/docs/configuration/config-file/).
|
|
535
|
+
|
|
536
|
+
Nothing maps to major by default. A major bump comes only from a structural breaking marker (`feat!:`, `fix(api)!:`, or a `BREAKING CHANGE:` footer), and those are always detected whatever you configure, so a commit cannot lose its breaking status through a custom pattern.
|
|
537
|
+
|
|
538
|
+
Full reference: [ferrflow.com/docs/reference/conventional-commits](https://ferrflow.com/docs/reference/conventional-commits).
|
|
539
|
+
|
|
532
540
|
## CI usage
|
|
533
541
|
|
|
534
542
|
**GitLab CI**
|
package/bin/ferrflow.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED