You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/roadmap/release-checklist.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,13 @@ This document describes how to release a new Workflow version. It's targeted tow
4
4
maintainers.
5
5
6
6
The below sections present a step-by-step guide to publish a new Workflow release. Throughout all
7
-
of the examples, we'll be assuming that the below two environment variables are present in wherever
7
+
of the examples, we'll be assuming that the below four environment variables are present wherever
8
8
you're working. Make sure to set them (e.g. by `export`ing them) before you get started.
9
9
10
-
-`$WORKFLOW_RELEASE` - the full name of this version. For example, `v2.0.0-rc2` for a minor version, `v2.0.0` for a major version.
11
-
-`$WORKFLOW_RELEASE_SHORT` - The short name of this version. For example, `rc2` for a minor version and identical to `$WORKFLOW_RELEASE` above if a major version.
10
+
-`$WORKFLOW_RELEASE` - the full name of this version. For example, `v2.0.0-rc2` for a pre-release version or `v2.0.0` otherwise.
11
+
-`$WORKFLOW_RELEASE_SHORT` - The short name of this version. For example, `rc2` for a pre-release version or identical to `$WORKFLOW_RELEASE` above otherwise.
12
+
-`$WORKFLOW_PREV_RELEASE` - the full name of the previous version. For example, `v2.0.0-rc1` for a pre-release version or `v2.0.0` otherwise.
13
+
-`$WORKFLOW_PREV_RELEASE_SHORT` - The short name of the previous version. For example, `rc1` for a pre-release version or identical to `$WORKFLOW_PREV_RELEASE` above otherwise.
12
14
13
15
# What's a Release?
14
16
@@ -112,11 +114,12 @@ values used in job above.
112
114
# Step 4: Update Documentation
113
115
114
116
Create a new pull request against deis/workflow, updating all references of the old release to
115
-
`$WORKFLOW_RELEASE`. Use `git grep $WORKFLOW_OLD_RELEASE` to find any references. (Be careful not to
116
-
change `CHANGELOG.md`)
117
+
`$WORKFLOW_RELEASE`. Use `git grep $WORKFLOW_PREV_RELEASE` and `git grep
118
+
$WORKFLOW_PREV_RELEASE_SHORT` to find any references. (Be careful not to change `CHANGELOG.md`)
117
119
118
-
Also, note there may be an occurrence of the previous oldest release (prior to `$WORKFLOW_OLD_RELEASE`) in
119
-
`upgrading-workflow.md`. This should be changed to `$WORKFLOW_OLD_RELEASE`.
120
+
Also, note there may be occurrences of an older release (prior to
121
+
`$WORKFLOW_PREV_RELEASE`) in `upgrading-workflow.md`. These should be changed to
0 commit comments