Skip to content

Commit 758ec87

Browse files
authored
Remove any references to master (#2391)
1 parent 6322b2d commit 758ec87

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/bindgen.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: bindgen
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
rustfmt-clippy:

.github/workflows/deploy-book.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Deploy book
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
deploy-book:

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1302,7 +1302,7 @@ Released 2017/10/27
13021302
have. [#1094][]
13031303

13041304
[faq]: https://rust-lang.github.io/rust-bindgen/faq.html
1305-
[fuzzing]: https://github.com/rust-lang/rust-bindgen/blob/master/csmith-fuzzing/README.md
1305+
[fuzzing]: https://github.com/rust-lang/rust-bindgen/blob/main/csmith-fuzzing/README.md
13061306

13071307
[#938]: https://github.com/rust-lang/rust-bindgen/issues/938
13081308
[#888]: https://github.com/rust-lang/rust-bindgen/issues/888

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ the `codegen::postprocessing` module by following these steps:
336336

337337
Ensure that each commit stands alone, and passes tests. This enables better `git
338338
bisect`ing when needed. If your commits do not stand on their own, then rebase
339-
them on top of the latest master and squash them into a single commit.
339+
them on top of the latest main and squash them into a single commit.
340340

341341
All pull requests undergo code review before merging. To request review, comment
342342
`r? @github_username_of_reviewer`. They we will respond with `r+` to approve the
@@ -419,7 +419,7 @@ $ brew install creduce
419419
$ # Etc...
420420
```
421421

422-
Otherwise, follow [these instructions](https://github.com/csmith-project/creduce/blob/master/INSTALL.md) for building and/or installing `creduce`.
422+
Otherwise, follow [these instructions](https://github.com/csmith-project/creduce/blob/main/INSTALL.md) for building and/or installing `creduce`.
423423

424424
Running `creduce` requires two things:
425425

@@ -548,9 +548,9 @@ $ ./node_modules/doctoc/doctoc.js CHANGELOG.md
548548
Bump version numbers as needed. Run tests just to ensure everything is working
549549
as expected.
550550

551-
### Merge to `master`
551+
### Merge to `main`
552552

553-
For regular releases, the changes above should end up in `master` before
553+
For regular releases, the changes above should end up in `main` before
554554
publishing. For dot-releases of an old version (e.g., cherry-picking an
555555
important fix) you can skip this.
556556

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ platform:
2525

2626
branches:
2727
only:
28-
- master
28+
- main
2929

3030
install:
3131
- if %PLATFORM% == x86 (set RUST_PLATFORM=i686&set MINGW_BITS=32) else (set RUST_PLATFORM=x86_64&set MINGW_BITS=64)

releases/release-announcement-template.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Found a bug with `bindgen`? [File an issue here.][file-issue]
4141
[crates.io]: https://crates.io/crates/bindgen
4242
[guide]: https://rust-lang.github.io/rust-bindgen
4343
[docs]: https://docs.rs/bindgen
44-
[contributing]: https://github.com/rust-lang/rust-bindgen/blob/master/CONTRIBUTING.md
44+
[contributing]: https://github.com/rust-lang/rust-bindgen/blob/main/CONTRIBUTING.md
4545
[easy]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy
4646
[less-easy]: https://github.com/rust-lang/rust-bindgen/issues?q=is%3Aopen+is%3Aissue+label%3AE-less-easy
4747
[looking]: https://github.com/rust-lang/rust-bindgen/issues/747

0 commit comments

Comments
 (0)