with one click
update-version
// Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).
// Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).
Add a new effect to @remotion/effects, including implementation, package exports, docs, demos, preview images, tests, formatting, and builds.
Open a pull request for the current feature
Add a new Remotion CLI or config option by creating an AnyRemotionOption, registering CLI parsing, wiring config setters, and updating documentation. Use when adding or converting command-line flags or Remotion options.
Add a new package to the Remotion monorepo, including package scaffolding, monorepo registration, documentation, build scripts, tests, and release checklist updates. Use when creating a new @remotion package.
Guidance for working on Remotion Studio Visual Mode, sequence identity, node paths, symbolicated stacks, override IDs, and hot reload behavior. Use when implementing or debugging visual editing of Sequences.
Best practices for Remotion - Video creation in React
| name | update-version |
| description | Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`). |
Use this when a PR contains docs changes with <AvailableFrom v="..."> and the value should reflect the next release version.
main:git fetch origin main --quiet
git --no-pager show origin/main:packages/core/src/version.ts
Read VERSION from that file (for example: 4.0.468), then compute the next patch version by incrementing the patch number by 1 (4.0.469).
AvailableFrom entries changed in the current PR:git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="'
Update only AvailableFrom values touched by this PR so they match the computed next patch version from step 1.
Do not change unrelated AvailableFrom values outside the PR diff.
Commit and push the update.