@@ -42,7 +42,7 @@ Feature freezing for a new release
42
42
2. Append the "rc1+dev" designator to the Version field in the META file, and
43
43
update the NEWS file to have this new version as the topmost heading
44
44
3. Commit and push this new branch
45
- 2. Update the ``Version: `` field in META `of the master branch ` to be the `next `
45
+ 2. Update the ``Version: `` field in META `of the main branch ` to be the `next `
46
46
release version, not the one whose features have just been frozen, and update
47
47
the NEWS file as you did in step 2.
48
48
@@ -55,12 +55,12 @@ For example, to feature-freeze for version 3.2::
55
55
$ git add NEWS META
56
56
$ git commit -m "Update version for feature freeze"
57
57
$ git push upstream 3.2
58
- $ git checkout master
58
+ $ git checkout main
59
59
$ vim META # update the ``Version:`` field to 3.3.0+dev
60
60
$ vim NEWS # update the topmost version number to 3.3.0+dev
61
61
$ git add NEWS META
62
62
$ git commit -m "Update version number"
63
- $ git push upstream master
63
+ $ git push upstream main
64
64
65
65
Creating a new release candidate
66
66
--------------------------------
@@ -95,7 +95,7 @@ For example to release 3.2.0rc1::
95
95
Applying patches to a new microrelease
96
96
--------------------------------------
97
97
98
- If a released version 3.2.0 has bugs, cherry-pick the fixes from master into the
98
+ If a released version 3.2.0 has bugs, cherry-pick the fixes from main into the
99
99
3.2 branch::
100
100
101
101
$ git checkout 3.2
@@ -108,19 +108,19 @@ Once you've accumulated enough bugs, move on to issuing a new release below.
108
108
Creating a new release
109
109
----------------------
110
110
111
- This is a two-phase process because we need to ensure that NEWS in master
111
+ This is a two-phase process because we need to ensure that NEWS in main
112
112
contains a full history of releases, and we achieve this by always merging
113
- changes from master into a release branch.
113
+ changes from main into a release branch.
114
114
115
- 1. Check out master
115
+ 1. Check out main
116
116
2. Ensure that the latest release notes for this release are reflected in NEWS
117
- 3. Commit that to master
117
+ 3. Commit that to main
118
118
119
119
Then work on the release branch:
120
120
121
121
1. Check out the relevant `major.minor ` branch
122
122
2. Remove any "rcX" and "+dev" from the Version field in META
123
- 3. Cherry-pick your NEWS update commit from master into this release branch.
123
+ 3. Cherry-pick your NEWS update commit from main into this release branch.
124
124
Resolve conflicts and get rid of news that reflect future releases.
125
125
4. Build a release package as described above
126
126
5. Tag and commit the updated NEWS and META so one can easily recompile this
@@ -131,11 +131,11 @@ Then work on the release branch:
131
131
132
132
For example to release 3.2.0::
133
133
134
- $ git checkout master
134
+ $ git checkout main
135
135
$ vim NEWS # add release notes from ``git log --oneline 3.2.0rc1..``
136
136
$ git commit
137
137
138
- Let's say the above generated commit abc345e on master . Then::
138
+ Let's say the above generated commit abc345e on main . Then::
139
139
140
140
$ git checkout 3.2
141
141
$ vim META # 3.2.0rc2+dev -> 3.2.0
@@ -150,7 +150,7 @@ Let's say the above generated commit abc345e on master. Then::
150
150
$ git add NEWS META
151
151
$ git commit -m "Uptick version after release"
152
152
153
- Then push your master and your release branch and also push tags::
153
+ Then push your main and your release branch and also push tags::
154
154
155
- $ git checkout master && git push && git push --tags
155
+ $ git checkout main && git push && git push --tags
156
156
$ git checkout 3.2 && git push && git push --tags
0 commit comments