Files
openwork/RELEASE.md
ben 00be06d4b5 chore(release): unify openwrk versioning + bump v0.11.14 (#466)
* chore(release): unify openwrk with app version

* chore: bump version to 0.11.14
2026-02-05 13:23:47 -08:00

1.6 KiB

Release checklist

OpenWork releases should be deterministic, easy to reproduce, and fully verifiable with CLI tooling.

Preflight

  • Sync the default branch (currently dev).
  • Run pnpm release:review and fix any mismatches.
  • If you are building sidecar assets, set SOURCE_DATE_EPOCH to the tag timestamp for deterministic manifests.

App release (desktop)

  1. Bump versions (app + desktop + Tauri + Cargo):
    • pnpm bump:patch or pnpm bump:minor or pnpm bump:major
  2. Re-run pnpm release:review.
  3. Build sidecars for the desktop bundle:
    • pnpm --filter @different-ai/openwork prepare:sidecar
  4. Commit the version bump.
  5. Tag and push:
    • git tag vX.Y.Z
    • git push origin vX.Y.Z

openwrk (npm + sidecars)

  1. Bump versions (includes packages/headless/package.json):
    • pnpm bump:patch or pnpm bump:minor or pnpm bump:major
  2. Build sidecar assets and manifest:
    • pnpm --filter openwrk build:sidecars
  3. Create the GitHub release for sidecars:
    • gh release create openwrk-vX.Y.Z packages/headless/dist/sidecars/* --repo different-ai/openwork
  4. Publish the package:
    • pnpm --filter openwrk publish --access public

openwork-server + owpenbot (if version changed)

  • pnpm --filter openwork-server publish --access public
  • pnpm --filter owpenwork publish --access public

Verification

  • openwrk start --workspace /path/to/workspace --check --check-events
  • gh run list --repo different-ai/openwork --workflow "Release App" --limit 5
  • gh release view vX.Y.Z --repo different-ai/openwork

Use pnpm release:review --json when automating these checks in scripts or agents.