Skip to main content

update-version

Update `AvailableFrom` in a PR to the next Remotion patch version (`main` + `0.0.1`).

Ir para a instalação

Informações da origem

Repositório
remotion-dev/remotion
Última atividade na origem
28 de maio de 2026 às 09:50
Idioma detectado do SKILL.md
inglês
Estrelas
59.638
Forks
4.567

Opções de instalação

Por padrão, está selecionado o prompt que primeiro revisa a origem. Você pode mudar para um comando direto ou baixar uma cópia local.

Revise os arquivos de origem

Leia o SKILL.md e os arquivos complementares exibidos pelo SkillsMP antes de decidir se vai instalar.

Exibindo SKILL.md

SKILL.md
Instruções da origem · Visualização somente leitura
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. 1. Get the canonical version from `main`: ```bash 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`). 2. Find `AvailableFrom` entries changed in the current PR: ```bash git --no-pager diff origin/main...HEAD -- packages/docs | rg 'AvailableFrom v="' ``` 3. Update only `AvailableFrom` values touched by this PR so they match the computed next patch version from step 1. 4. Do not change unrelated `AvailableFrom` values outside the PR diff. 5. Commit and push the update.
Ver no GitHub