Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 633 Bytes

RELEASE.md

File metadata and controls

18 lines (14 loc) · 633 Bytes

Release Guide

  1. Update version field in package.json
  2. Stage: git add package.json
  3. Commit: git commit -m vX.Y.Z
  4. Create tag: git tag vX.Y.Z
  5. Push: git push --atomic origin master vX.Y.Z

Release Candidate

By appending -rcA to your version and git tag (where A is a number), you will publish a release candidate. This release candidate is then installable by using pnpm add slidev-theme-eavise@next.

  1. Update version field in package.json
  2. Stage: git add package.json
  3. Commit: git commit -m vX.Y.Z-rcA
  4. Create tag: git tag vX.Y.Z-rcA
  5. Push: git push --atomic origin master vX.Y.Z-rcA