mirror of
https://github.com/cubexy/obsidian-pdf-printer.git
synced 2026-07-22 05:48:03 +00:00
722 B
722 B
Releasing a new version
The following step-by-step list is a simple checklist on how to create a new release of obsidian-pdf-printer.
- Move all relevant new features/fixes to a common branch.
- Add a new version tag to
package.json, following semantic versioning guidelines. - Run
npm installto ensure the new version tag is written topackage-lock.json. - Add the new version to
manifest.json(version) andversions.json(left-hand of the:). - Push the changes to the previously chosen common branch.
- Create a tag and push the branch files (I am using main branch as an example here):
git tag -a "[version e.g. 0.1.2]" -m "[same version]" git push origin [version]