From 9cf34089e4cf85c87a9619c9b74025e3dd314344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 21 Feb 2023 12:12:31 +0100 Subject: [PATCH] Website: update steps to release new version Some steps still expected that the version bump was done with a script (which hasn't been in use for a while now). --- .../content/development/releasing/_index.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/web/project-website/content/development/releasing/_index.md b/web/project-website/content/development/releasing/_index.md index e90d04e2..84e1f58c 100644 --- a/web/project-website/content/development/releasing/_index.md +++ b/web/project-website/content/development/releasing/_index.md @@ -10,11 +10,15 @@ people. ## Steps to release a new version of Flamenco +Replace `${VERSION}` with the actual version number. + 1. Update `CHANGELOG.md` and mark the to-be-released version as released today. 2. Update `Makefile` and change the `VERSION` and `RELEASE_CYCLE` variables. -3. Run `make update-version` -4. Commit & tag with the commands shown in the 2nd step. -5. Run `make release-package` -6. Check that the files in `dist/` are there and have a non-zero size. -7. Run `make publish-release-packages` to upload the packages to the website. -8. Run `make project-website` to generate and publish the new website. +3. `make update-version` +4. `git commit -m "Bump version to ${VERSION}"` +5. `git tag v${VERSION}` +6. `make release-package` +7. Check that the files in `dist/` are there and have a non-zero size. +8. `make publish-release-packages` to upload the packages to the website. +9. `make project-website` to generate and publish the new website. +10. `git push && git push --tags`