From 9f6b49ca4025320ee8c6faf21719341528477824 Mon Sep 17 00:00:00 2001 From: Oliver Salzburg Date: Tue, 20 Sep 2022 19:50:03 +0200 Subject: [PATCH] docs: Explain release process --- DEVELOPMENT.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index a7e7b106..661b3641 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -71,3 +71,19 @@ To fill the **Problems** panel in VS Code with all current, type-related errors, ```shell yarn userscript:release ``` + +## Releasing a new version + +1. Create a tag for this version: + + ```bash + git tag v2.0.0-beta.9 + ``` + +1. Push the tag: + + ```bash + git push --tags + ``` + +1. Raise the version number in `packages/userscript/package.json` to a higher version that will be in development next!