@ferrflow/darwin-x64 3.2.0 → 4.0.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.
- package/README.md +16 -11
- package/bin/ferrflow +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,17 +18,22 @@ A single compiled binary with no runtime dependencies. Native monorepo support,
|
|
|
18
18
|
|
|
19
19
|
## Supported version files
|
|
20
20
|
|
|
21
|
-
| Format | File | Ecosystem |
|
|
22
|
-
|
|
23
|
-
|
|
|
24
|
-
|
|
|
25
|
-
|
|
|
26
|
-
|
|
|
27
|
-
|
|
|
28
|
-
|
|
|
29
|
-
|
|
|
30
|
-
|
|
|
31
|
-
|
|
|
21
|
+
| Format | File | Ecosystem | Selector |
|
|
22
|
+
|--------|------|-----------|----------|
|
|
23
|
+
| `toml` | `Cargo.toml` | Rust | `package.version` |
|
|
24
|
+
| `toml` | `pyproject.toml` | Python | `project.version` or `tool.poetry.version` |
|
|
25
|
+
| `json` | `package.json` | Node.js | `version` |
|
|
26
|
+
| `json` | `composer.json` | PHP | `version` |
|
|
27
|
+
| `xml` | `pom.xml` | Java / Maven | first `<version>` tag |
|
|
28
|
+
| `csproj` | `*.csproj` | .NET (C#, F#) | `<Version>` in `<PropertyGroup>` |
|
|
29
|
+
| `gradle` | `build.gradle`, `build.gradle.kts` | Java / Kotlin | `version = "…"` |
|
|
30
|
+
| `helm` / `chartyaml` | `Chart.yaml` | Kubernetes / Helm | top-level `version:` |
|
|
31
|
+
| `pubspecyaml` | `pubspec.yaml` | Dart / Flutter | top-level `version:` |
|
|
32
|
+
| `mixexs` | `mix.exs` | Elixir | `version: "…"` in `def project` |
|
|
33
|
+
| `gemspec` | `*.gemspec` | Ruby | `s.version = "…"` |
|
|
34
|
+
| `packageswift` | `Package.swift` | Swift | top-level `let <name>Version = "…"` |
|
|
35
|
+
| `gomod` | `go.mod` | Go | git tag only — no file write |
|
|
36
|
+
| `txt` | `VERSION`, `VERSION.txt` | Any | entire file content |
|
|
32
37
|
|
|
33
38
|
## Installation
|
|
34
39
|
|
package/bin/ferrflow
CHANGED
|
Binary file
|
package/package.json
CHANGED