Skip to content

Commit 4038ebd

Browse files
fix residual references to old main branch name
1 parent a198b04 commit 4038ebd

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HPC IO Benchmark Repository [![Build Status](https://travis-ci.org/hpc/ior.svg?branch=master)](https://travis-ci.org/hpc/ior)
1+
# HPC IO Benchmark Repository [![Build Status](https://travis-ci.org/hpc/ior.svg?branch=main)](https://travis-ci.org/hpc/ior)
22

33
This repository contains the IOR and mdtest parallel I/O benchmarks. The
44
[official IOR/mdtest documentation][] can be found in the `docs/` subdirectory

doc/sphinx/devDoc/release.rst

+13-13
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Feature freezing for a new release
4242
2. Append the "rc1+dev" designator to the Version field in the META file, and
4343
update the NEWS file to have this new version as the topmost heading
4444
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`
4646
release version, not the one whose features have just been frozen, and update
4747
the NEWS file as you did in step 2.
4848

@@ -55,12 +55,12 @@ For example, to feature-freeze for version 3.2::
5555
$ git add NEWS META
5656
$ git commit -m "Update version for feature freeze"
5757
$ git push upstream 3.2
58-
$ git checkout master
58+
$ git checkout main
5959
$ vim META # update the ``Version:`` field to 3.3.0+dev
6060
$ vim NEWS # update the topmost version number to 3.3.0+dev
6161
$ git add NEWS META
6262
$ git commit -m "Update version number"
63-
$ git push upstream master
63+
$ git push upstream main
6464

6565
Creating a new release candidate
6666
--------------------------------
@@ -95,7 +95,7 @@ For example to release 3.2.0rc1::
9595
Applying patches to a new microrelease
9696
--------------------------------------
9797

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
9999
3.2 branch::
100100

101101
$ git checkout 3.2
@@ -108,19 +108,19 @@ Once you've accumulated enough bugs, move on to issuing a new release below.
108108
Creating a new release
109109
----------------------
110110

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
112112
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.
114114

115-
1. Check out master
115+
1. Check out main
116116
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
118118

119119
Then work on the release branch:
120120

121121
1. Check out the relevant `major.minor` branch
122122
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.
124124
Resolve conflicts and get rid of news that reflect future releases.
125125
4. Build a release package as described above
126126
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:
131131

132132
For example to release 3.2.0::
133133

134-
$ git checkout master
134+
$ git checkout main
135135
$ vim NEWS # add release notes from ``git log --oneline 3.2.0rc1..``
136136
$ git commit
137137

138-
Let's say the above generated commit abc345e on master. Then::
138+
Let's say the above generated commit abc345e on main. Then::
139139

140140
$ git checkout 3.2
141141
$ vim META # 3.2.0rc2+dev -> 3.2.0
@@ -150,7 +150,7 @@ Let's say the above generated commit abc345e on master. Then::
150150
$ git add NEWS META
151151
$ git commit -m "Uptick version after release"
152152

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::
154154

155-
$ git checkout master && git push && git push --tags
155+
$ git checkout main && git push && git push --tags
156156
$ git checkout 3.2 && git push && git push --tags

0 commit comments

Comments
 (0)