@inference/cli 0.0.10 → 0.0.11-beta.52

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -248,8 +248,9 @@ bun scripts/sync-versions.ts 0.0.9
248
248
 
249
249
  ### Manual Runs
250
250
 
251
- - `workflow_dispatch` is intended for dry runs and emergency re-publishes
251
+ - `workflow_dispatch` with `dry_run=false` always attempts a publish on `development` or `main`
252
252
  - Set `dry_run=true` to validate the full build and packaging path without publishing to npm
253
+ - Pushes to `development` always publish a fresh beta release when this workflow is triggered
253
254
  - Set `dry_run=false` only on `development` or `main`
254
255
  - Manual runs from other branches are rejected by the workflow
255
256
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/cli",
3
- "version": "0.0.10",
3
+ "version": "0.0.11-beta.52",
4
4
  "description": "Inference.net CLI - manage training runs, evals, datasets, and inferences from your terminal",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -26,10 +26,10 @@
26
26
  "ai"
27
27
  ],
28
28
  "optionalDependencies": {
29
- "@inference/cli-darwin-arm64": "0.0.10",
30
- "@inference/cli-darwin-x64": "0.0.10",
31
- "@inference/cli-linux-x64": "0.0.10",
32
- "@inference/cli-linux-arm64": "0.0.10"
29
+ "@inference/cli-darwin-arm64": "0.0.11-beta.52",
30
+ "@inference/cli-darwin-x64": "0.0.11-beta.52",
31
+ "@inference/cli-linux-x64": "0.0.11-beta.52",
32
+ "@inference/cli-linux-arm64": "0.0.11-beta.52"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "bun run clean:bin && bun run build:cli",