aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSkyler Hawthorne2023-12-05 01:54:18 +0000
committerGitHub2023-12-05 01:54:18 +0000
commitbf7c4e165946f7a5be48c9d7e8abb8e68f066882 (patch)
tree2e5660f2562e0b6f424af4792348e7c3546e86ab /docs
parent44c3d48a941c5e2d6484c808c9066b91cfbcf0ec (diff)
use workspace inheritance for common version (#8925)
Diffstat (limited to 'docs')
-rw-r--r--docs/releases.md17
1 files changed, 12 insertions, 5 deletions
diff --git a/docs/releases.md b/docs/releases.md
index 84288675..e39cfd91 100644
--- a/docs/releases.md
+++ b/docs/releases.md
@@ -1,16 +1,23 @@
## Checklist
Helix releases are versioned in the Calendar Versioning scheme:
-`YY.0M(.MICRO)`, for example, `22.05` for May of 2022. In these instructions
-we'll use `<tag>` as a placeholder for the tag being published.
+`YY.0M(.MICRO)`, for example, `22.05` for May of 2022, or in a patch release,
+`22.05.1`. In these instructions we'll use `<tag>` as a placeholder for the tag
+being published.
* Merge the changelog PR
* Add new `<release>` entry in `contrib/Helix.appdata.xml` with release information according to the [AppStream spec](https://www.freedesktop.org/software/appstream/docs/sect-Metadata-Releases.html)
* Tag and push
* `git tag -s -m "<tag>" -a <tag> && git push`
* Make sure to switch to master and pull first
-* Edit the `VERSION` file and change the date to the next planned release
- * Releases are planned to happen every two months, so `22.05` would change to `22.07`
+* Edit the `Cargo.toml` file and change the date in the `version` field to the next planned release
+ * Due to Cargo having a strict requirement on SemVer with 3 or more version
+ numbers, a `0` is required in the micro version; however, unless we are
+ publishing a patch release after a major release, the `.0` is dropped in
+ the user facing version.
+ * Releases are planned to happen every two months, so `22.05.0` would change to `22.07.0`
+ * If we are pushing a patch/bugfix release in the same month as the previous
+ release, bump the micro version, e.g. `22.07.0` to `22.07.1`
* Wait for the Release CI to finish
* It will automatically turn the git tag into a GitHub release when it uploads artifacts
* Edit the new release
@@ -57,4 +64,4 @@ versions for convenience:
> release. For the full log, check out the git log.
Typically, small changes like dependencies or documentation updates, refactors,
-or meta changes like GitHub Actions work are left out. \ No newline at end of file
+or meta changes like GitHub Actions work are left out.