Skip to content

Commit 6b1ae22

Browse files
committed
Update documentation with the 0.2/1.0 workflow
Clarify that PRs should be to `main` then cherry picked to 0.2 after review, in order to keep things from getting too out of sync or needing to conduct the same review in multiple places.
1 parent 16ee391 commit 6b1ae22

File tree

3 files changed

+44
-12
lines changed

3 files changed

+44
-12
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Here's a checklist for things that will be checked during review or continuous i
1010
- \[ ] If your PR increments version number, it must NOT contain any other changes (otherwise a release could be delayed)
1111
- \[ ] Make sure `ci/style.sh` passes
1212
- \[ ] `cd libc-test && cargo test`
13-
- (this might fail on your env due to environment difference between your env and CI. Ignore failures if you are not sure)
13+
- (this might fail on your env due to environment difference between your env and CI. Ignore local failures if you are not sure)
1414

1515
Delete this line and everything above before opening your PR.

CONTRIBUTING.md

+35-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,41 @@
33
Welcome! If you are reading this document, it means you are interested in contributing
44
to the `libc` crate.
55

6-
## v0.2 changes
6+
## v1.0 Roadmap
77

8-
If you want to add your changes to v0.2, please submit them to the `libc-0.2` branch.
9-
If you want to add any breaking changes, it should be submitted to the main branch,
10-
which has changes for v0.3.
11-
We will support and make a new release for v0.2 until we make the first release of v0.3.
8+
`libc` has two active branches: `main` and `libc-0.2`. `main` is for active
9+
development of the upcoming v1.0 release, and should be the target of all pull
10+
requests. `libc-0.2` is for updates to the currently released version.
11+
12+
If a pull request to `main` is a good candidate for inclusion in an `0.2.x`
13+
release, include `@rustbot label stable-nominated` in a comment to propose this.
14+
Good candidates will usually meet the following:
15+
16+
1. The included changes are non-breaking.
17+
2. The change applies cleanly to both branches.
18+
3. There is a usecase that justifies inclusion in a stable release (all
19+
additions should always have a usecase, hopefully).
20+
21+
Once a `stable-nominated` PR targeting `main` has merged, it can be cherry
22+
picked to the `libc-0.2` branch. A maintainer will likely do these cherry
23+
picks in a batch.
24+
25+
Alternatively, you can start this process yourself by creating a new branch
26+
based on `libc-0.2` and running `git cherry-pick -xe commit-sha-on-main` (`git
27+
cherry-pick -xe start-sha^..end-sha` if a range of commits is needed). `git`
28+
will automatically add the "cherry picked from commit" note, but try to add a
29+
backport note so the original PR gets crosslinked:
30+
31+
```
32+
# ... original commit message ...
33+
34+
(backport <https://github.com/rust-lang/libc/pull/1234>) # add manually
35+
(cherry picked from commit 104b6a4ae31c726814c36318dc718470cc96e167) # added by git
36+
```
37+
38+
Once the cherry-pick is complete, open a PR targeting `libc-0.2`.
39+
40+
See the [tracking issue](https://github.com/rust-lang/libc/issues/3248) for details.
1241

1342
## Adding an API
1443

@@ -51,7 +80,7 @@ With that in mind, the steps for adding a new API are:
5180
5. Wait for a merge!
5281

5382
<sup>1</sup>: Note that this list has nothing to do with any Unix or Posix
54-
standard, it's just a list shared between all OSs that declare `#[cfg(unix)]`.
83+
standard, it's just a list shared among all OSs that declare `#[cfg(unix)]`.
5584

5685
## Test before you commit
5786

README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,17 @@ More detailed information about the design of this library can be found in its
1616

1717
[rfc]: https://github.com/rust-lang/rfcs/blob/HEAD/text/1291-promote-libc.md
1818

19-
## v0.3 Roadmap
19+
## v1.0 Roadmap
2020

21-
The main branch is now for v0.3 which has some breaking changes.
21+
Currently, `libc` has two active branches: `main` for the upcoming v1.0 release,
22+
and `libc-0.2` for the currently published version. By default all pull requests
23+
should target `main`; once reviewed, they can be cherry picked to the `libc-0.2`
24+
branch if needed.
2225

23-
For v0.2, please submit PRs to the `libc-0.2` branch instead.
24-
We will stop making new v0.2 releases once we release v0.3 on crates.io.
26+
We will stop making new v0.2 releases once v1.0 is released.
2527

26-
See the [tracking issue](https://github.com/rust-lang/libc/issues/3248) for details.
28+
See the section in [CONTRIBUTING.md](CONTRIBUTING.md#v10-roadmap) for more
29+
details.
2730

2831
## Usage
2932

0 commit comments

Comments
 (0)