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: RELEASE_GUIDELINES.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ To prepare for a new release, create a [new issue](https://github.com/cloudevent
6
6
7
7
For example: "Proposal for 3.2.0 release", or something similar. If you are not sure which version is the next version to be released, you can run `npm run release -- --dry-run` to find out what the next version will be.
8
8
9
-
The body of the issue should be the commits that will be part of the release. This can be easily accomplished by running a git log command with a defined **range**. This range should start at the most recent version tag and end at the latest commit in the master branch.
9
+
The body of the issue should be the commits that will be part of the release. This can be easily accomplished by running a git log command with a defined **range**. This range should start at the most recent version tag and end at the latest commit in the main branch.
10
10
11
11
For example:
12
12
13
13
```
14
-
git log v3.0.1..upstream/master --oneline
14
+
git log v3.0.1..upstream/main --oneline
15
15
```
16
16
17
-
This will output all the commits from the 3.0.1 tag to the latest commits in the remote upstream/master branch.
17
+
This will output all the commits from the 3.0.1 tag to the latest commits in the remote upstream/main branch.
18
18
19
19
This output should be pasted into the issue as normal text. This will allow Github to magically turn all commit hashes and PR/Issues numbers to links.
20
20
@@ -37,7 +37,7 @@ npm run release
37
37
This will update the CHANGELOG.md and create a new tag based on the version. This can then be pushed upstream by doing:
0 commit comments